diff --git a/services/document-updater/app.coffee b/services/document-updater/app.coffee index 5eb47d9c9e..82598bd93f 100644 --- a/services/document-updater/app.coffee +++ b/services/document-updater/app.coffee @@ -143,11 +143,12 @@ host = Settings.internal.documentupdater.host or "localhost" if !module.parent # Called directly app.listen port, host, -> logger.info "Document-updater starting up, listening on #{host}:#{port}" + if Settings.continuousBackgroundFlush + logger.info "Starting continuous background flush" + DeleteQueueManager.startBackgroundFlush() + module.exports = app for signal in ['SIGINT', 'SIGHUP', 'SIGQUIT', 'SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGABRT'] process.on signal, shutdownCleanly(signal) -if Settings.continuousBackgroundFlush - logger.info "Starting continuous background flush" - DeleteQueueManager.startBackgroundFlush() \ No newline at end of file