mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 21:19:43 -08:00
fix(core): Fix issue that worker and webhook service close directly (#5461)
This commit is contained in:
parent
59f5c4221e
commit
339655611f
|
@ -80,6 +80,9 @@ export class Webhook extends BaseCommand {
|
||||||
async run() {
|
async run() {
|
||||||
await new WebhookServer().start();
|
await new WebhookServer().start();
|
||||||
this.logger.info('Webhook listener waiting for requests.');
|
this.logger.info('Webhook listener waiting for requests.');
|
||||||
|
|
||||||
|
// Make sure that the process does not close
|
||||||
|
await new Promise(() => {});
|
||||||
}
|
}
|
||||||
|
|
||||||
async catch(error: Error) {
|
async catch(error: Error) {
|
||||||
|
|
|
@ -353,6 +353,9 @@ export class Worker extends BaseCommand {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Make sure that the process does not close
|
||||||
|
await new Promise(() => {});
|
||||||
}
|
}
|
||||||
|
|
||||||
async catch(error: Error) {
|
async catch(error: Error) {
|
||||||
|
|
Loading…
Reference in a new issue