mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: Increase workflow reactivation max timeout to 1 day (#4869)
This commit is contained in:
parent
4cb4c5e818
commit
593354b6d8
|
@ -42,8 +42,8 @@ export const NPM_PACKAGE_STATUS_GOOD = 'OK';
|
|||
|
||||
export const UNKNOWN_FAILURE_REASON = 'Unknown failure reason';
|
||||
|
||||
export const WORKFLOW_REACTIVATE_INITIAL_TIMEOUT = 1000;
|
||||
export const WORKFLOW_REACTIVATE_MAX_TIMEOUT = 180000;
|
||||
export const WORKFLOW_REACTIVATE_INITIAL_TIMEOUT = 1000; // 1 second
|
||||
export const WORKFLOW_REACTIVATE_MAX_TIMEOUT = 24 * 60 * 60 * 1000; // 1 day
|
||||
|
||||
export const SETTINGS_LICENSE_CERT_KEY = 'license.cert';
|
||||
|
||||
|
|
Loading…
Reference in a new issue