Merge pull request #2937 from thelounge/xpaw/empty-storage-later
Empty storage directory after destroying all channels
This commit is contained in:
commit
6fb41b44d4
@ -181,6 +181,11 @@ module.exports = function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log.info("Exiting...");
|
||||||
|
|
||||||
|
// Close all client and IRC connections
|
||||||
|
manager.clients.forEach((client) => client.quit());
|
||||||
|
|
||||||
if (Helper.config.prefetchStorage) {
|
if (Helper.config.prefetchStorage) {
|
||||||
log.info("Clearing prefetch storage folder, this might take a while...");
|
log.info("Clearing prefetch storage folder, this might take a while...");
|
||||||
|
|
||||||
@ -190,11 +195,6 @@ module.exports = function() {
|
|||||||
// Forcefully exit after 3 seconds
|
// Forcefully exit after 3 seconds
|
||||||
suicideTimeout = setTimeout(() => process.exit(1), 3000);
|
suicideTimeout = setTimeout(() => process.exit(1), 3000);
|
||||||
|
|
||||||
log.info("Exiting...");
|
|
||||||
|
|
||||||
// Close all client and IRC connections
|
|
||||||
manager.clients.forEach((client) => client.quit());
|
|
||||||
|
|
||||||
// Close http server
|
// Close http server
|
||||||
server.close(() => {
|
server.close(() => {
|
||||||
clearTimeout(suicideTimeout);
|
clearTimeout(suicideTimeout);
|
||||||
|
Loading…
Reference in New Issue
Block a user