Skip to content

Commit

Permalink
[DDW-780] Increase kill node timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaglumac committed Oct 26, 2021
1 parent 53691ab commit 0ee60f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main/config.js
Expand Up @@ -154,7 +154,7 @@ export const MAX_LAUNCHER_LOGS_ALLOWED = 3;
export const NODE_STARTUP_TIMEOUT = 5000;
export const NODE_STARTUP_MAX_RETRIES = 5;
export const NODE_SHUTDOWN_TIMEOUT = isTest ? 5000 : 5 * 60 * 1000; // 5 minutes | unit: milliseconds
export const NODE_KILL_TIMEOUT = isTest ? 5000 : 10 * 5 * 1000; // 5 minutes | unit: milliseconds
export const NODE_KILL_TIMEOUT = isTest ? 5000 : 5 * 60 * 1000; // 5 minutes | unit: milliseconds
export const NODE_UPDATE_TIMEOUT = isTest ? 10000 : 5 * 60 * 1000; // 5 minutes | unit: milliseconds

export const DISK_SPACE_REQUIRED = 400 * 1073741274; // 2 GB | unit: bytes
Expand Down

0 comments on commit 0ee60f6

Please sign in to comment.