(text: string)
| 257 | `; |
| 258 | |
| 259 | const executionIdOf = (text: string): string | undefined => |
| 260 | /\bexecutionId:\s*(\S+)/.exec(text)?.[1]; |
| 261 | |
| 262 | const IDLE_TEARDOWN_BUFFER_MS = 2_000; |
| 263 | const IDLE_TEARDOWN_GAP_MS = configuredMcpPausedSessionIdleTimeoutMs() + IDLE_TEARDOWN_BUFFER_MS; |
no test coverage detected