mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
Don't freak out if trying to close a socket that was already closed.
This commit is contained in:
@@ -97,7 +97,10 @@ module.exports = function(options) {
|
||||
.handler())
|
||||
|
||||
lifecycle.observe(function() {
|
||||
appDealer.close()
|
||||
devDealer.close()
|
||||
try {
|
||||
appDealer.close()
|
||||
devDealer.close()
|
||||
}
|
||||
catch (err) {}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user