mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
fix(core): Do not debounce webhooks, triggers and pollers activation (#11306)
This commit is contained in:
parent
679fa4a10a
commit
64bddf8653
|
@ -20,4 +20,7 @@ export const SELF_SEND_COMMANDS = new Set([
|
|||
* Commands that should not be debounced when received, e.g. during webhook handling in
|
||||
* multi-main setup.
|
||||
*/
|
||||
export const IMMEDIATE_COMMANDS = new Set(['relay-execution-lifecycle-event']);
|
||||
export const IMMEDIATE_COMMANDS = new Set([
|
||||
'add-webhooks-triggers-and-pollers',
|
||||
'relay-execution-lifecycle-event',
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue