Reap dead devices using timeouts. Previously, if a provider died without being able to clean up properly, the device would stay as a ghost.

This commit is contained in:
Simo Kinnunen
2014-02-25 20:45:29 +09:00
parent f24e777961
commit 4896ca406e
10 changed files with 189 additions and 3 deletions

View File

@@ -65,6 +65,9 @@ module.exports = function(options) {
})
})
// Worker messages
.on(wire.DeviceHeartbeatMessage, function(channel, message) {
dbapi.updateDeviceHeartbeat(message.serial)
})
.on(wire.JoinGroupMessage, function(channel, message, data) {
dbapi.setDeviceOwner(message.serial, message.owner)
appDealer.send([channel, data])