mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix: Increase workflow reactivation max timeout to 1 day (#4869)
This commit is contained in:
committed by
GitHub
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';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user