1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00

Allow minitouch more time to start. The number of retries had already been set to 7 earlier, but got mistakenly changed to 5 during refactoring.

This commit is contained in:
Simo Kinnunen 2015-07-22 17:55:52 +09:00
parent 674953f727
commit 7a262a4e68

View file

@ -277,7 +277,7 @@ module.exports = syrup.serial()
log.info('Connecting to minitouch service')
// SH-03G can be very slow to start sometimes. Make sure we try long
// enough.
return tryConnect(5, 100)
return tryConnect(7, 100)
}
TouchConsumer.prototype._stop = function() {