feat: add possibility to configure stop time for workers (#4012)

* feat: add a timer to gracefully control how long workers wait before exiting
This commit is contained in:
Omar Ajoue
2022-09-02 15:40:45 +02:00
committed by GitHub
parent aec5c26564
commit a3791c22b3
2 changed files with 7 additions and 1 deletions

View File

@@ -85,7 +85,7 @@ export class Worker extends Command {
const externalHooks = ExternalHooks();
await externalHooks.run('n8n.stop', []);
const maxStopTime = 30000;
const maxStopTime = config.getEnv('queue.bull.gracefulShutdownTimeout') * 1000;
const stopTime = new Date().getTime() + maxStopTime;