Skip to content

Commit 7ae97cb

Browse files
committed
chore: reduce healthy TTL to 15s
1 parent 4c7f697 commit 7ae97cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/runtime/sshConnectionPool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const BACKOFF_SCHEDULE = [1, 5, 10, 20, 40, 60];
6262
* Time after which a "healthy" connection should be re-probed.
6363
* Prevents stale health state when network silently degrades.
6464
*/
65-
const HEALTHY_TTL_MS = 5 * 60 * 1000; // 5 minutes
65+
const HEALTHY_TTL_MS = 15 * 1000; // 15 seconds
6666

6767
/**
6868
* SSH Connection Pool

0 commit comments

Comments
 (0)