mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
Reset owner and reverse forwards when a dead worker restarts. This should prevent ghost owners from staying in the device list.
This commit is contained in:
@@ -83,13 +83,15 @@ module.exports = function(options) {
|
||||
appDealer.send([channel, data])
|
||||
})
|
||||
// Worker initialized
|
||||
.on(wire.DevicePokeMessage, function(channel, message) {
|
||||
dbapi.setDeviceChannel(message.serial, message.channel)
|
||||
.on(wire.DeviceReadyMessage, function(channel, message, data) {
|
||||
dbapi.setDeviceReady(message.serial, message.channel)
|
||||
.then(function() {
|
||||
devDealer.send([
|
||||
message.channel
|
||||
, wireutil.envelope(new wire.ProbeMessage())
|
||||
])
|
||||
|
||||
appDealer.send([channel, data])
|
||||
})
|
||||
})
|
||||
// Worker messages
|
||||
|
||||
Reference in New Issue
Block a user