Merge branch 'master' into services

This commit is contained in:
Alexey Kasyanchuk 2018-08-15 03:20:18 +03:00
commit 5ef25693c1
3 changed files with 19 additions and 13 deletions

View File

@ -307,10 +307,14 @@ app.on("ready", async () => {
);
})
}, mainWindow, sphinx)
}, app.getPath("userData"), () => app.quit())
}, app.getPath("userData"), () => {
stopped = true
app.quit()
})
});
let stopProtect = false
let stopped = false
const stop = () => {
if(stopProtect)
return
@ -355,6 +359,12 @@ app.on('before-quit', () => {
stop()
})
// prevent closing app on kill
app.on('will-quit', (event) => {
if(!stopped)
event.preventDefault()
})
var rl = require("readline").createInterface({
input: process.stdin,
output: process.stdout
@ -367,8 +377,3 @@ rl.on("SIGINT", function () {
process.on("SIGINT", () => {
stop()
});
process.on("exit", () => {
if(spider)
spider.preventNetworkOnExit = true
})

View File

@ -104,3 +104,7 @@ process.on("SIGINT", () => {
process.exit()
}
});
process.on("SIGTERM", () => {
process.emit("SIGINT");
});

View File

@ -833,13 +833,10 @@ module.exports = function (send, recive, dataDirectory, version, env)
}))
})
if(!this.preventNetworkOnExit)
{
await Promise.all([
saveBootstrapPeers('api.myjson.com', '/bins/1e5rmh'),
saveBootstrapPeers('jsonblob.com', '/api/jsonBlob/013a4415-3533-11e8-8290-a901f3cf34aa')
])
}
await Promise.all([
saveBootstrapPeers('api.myjson.com', '/bins/1e5rmh'),
saveBootstrapPeers('jsonblob.com', '/api/jsonBlob/013a4415-3533-11e8-8290-a901f3cf34aa')
])
}
}