mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(editor): Faster reconnects for push (no-changelog) (#6164)
This commit is contained in:
parent
97578c7505
commit
0033f831fc
|
@ -123,7 +123,7 @@ export const pushConnection = mixins(
|
|||
this.connectRetries++;
|
||||
this.reconnectTimeout = setTimeout(
|
||||
this.attemptReconnect,
|
||||
Math.min(this.connectRetries * 3000, 30000), // maximum 30 seconds backoff
|
||||
Math.min(this.connectRetries * 2000, 8000), // maximum 8 seconds backoff
|
||||
);
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue