It seems that it's simply impossible to run too many things in parallel over ADB on a single device. Really weird stuff happening, like completely unrelated shell calls using files created by other shell calls. Switch back to serial implementation.

This commit is contained in:
Simo Kinnunen
2014-03-17 22:30:13 +09:00
parent 590c96ea21
commit cc42b7c51f
22 changed files with 23 additions and 23 deletions

View File

@@ -2,7 +2,7 @@ var syrup = require('syrup')
var logger = require('../../../util/logger')
module.exports = syrup()
module.exports = syrup.serial()
.dependency(require('./http'))
.define(function(options, http) {
var log = logger.createLogger('device:plugins:display')