mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Removed workaround for intermittent ghost-server logging
- upon further testing, this started to not work again so I'm removing this horrible hack - it could be Bunyan playing around with us, and the server is actually shutting down
This commit is contained in:
parent
385af269a5
commit
046b5540fe
1 changed files with 0 additions and 6 deletions
|
@ -169,9 +169,6 @@ class GhostServer {
|
||||||
this.httpServer = null;
|
this.httpServer = null;
|
||||||
this._logStopMessages();
|
this._logStopMessages();
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: investigate why this is required (see commit)
|
|
||||||
return Promise.resolve();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -206,9 +203,6 @@ class GhostServer {
|
||||||
// Wait for all cleanup tasks to finish
|
// Wait for all cleanup tasks to finish
|
||||||
await Promise
|
await Promise
|
||||||
.all(this.cleanupTasks.map(task => task()));
|
.all(this.cleanupTasks.map(task => task()));
|
||||||
|
|
||||||
// TODO: investigate why this is required (see commit)
|
|
||||||
return Promise.resolve();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_onShutdownComplete() {
|
_onShutdownComplete() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue