Empty storage directory after destroying all channels

This commit is contained in:
Pavel Djundik 2018-12-18 13:08:18 +02:00 committed by GitHub
parent 0995f95296
commit ed10e14b47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,6 +181,11 @@ module.exports = function() {
return;
}
log.info("Exiting...");
// Close all client and IRC connections
manager.clients.forEach((client) => client.quit());
if (Helper.config.prefetchStorage) {
log.info("Clearing prefetch storage folder, this might take a while...");
@ -190,11 +195,6 @@ module.exports = function() {
// Forcefully exit after 3 seconds
suicideTimeout = setTimeout(() => process.exit(1), 3000);
log.info("Exiting...");
// Close all client and IRC connections
manager.clients.forEach((client) => client.quit());
// Close http server
server.close(() => {
clearTimeout(suicideTimeout);