fix(core): Do not debounce webhooks, triggers and pollers activation (#11306)

This commit is contained in:
Iván Ovejero 2024-10-18 12:24:32 +02:00 committed by GitHub
parent 679fa4a10a
commit 64bddf8653
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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',
]);