Skip to content

Commit 2110a49

Browse files
committed
Revert uptime/restart standardization - keep original values
- Revert max_restarts back to 50 (from 10) - Revert min_uptime back to 10s (from 20s) - Keep other improvements (removed hardcoded paths, added exponential backoff)
1 parent 09a7c90 commit 2110a49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ecosystem.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ module.exports = {
77
max_memory_restart: '256M',
88
autorestart: true,
99
watch: false,
10-
max_restarts: 10, // Standardized to 10 like other services
11-
min_uptime: '20s', // Standardized to 20s
10+
max_restarts: 50,
11+
min_uptime: '10s',
1212
restart_delay: 4000,
1313
exp_backoff_restart_delay: 30000, // Added exponential backoff
1414

0 commit comments

Comments
 (0)