(text: string)
| 214 | `; |
| 215 | |
| 216 | const executionIdOf = (text: string): string | undefined => |
| 217 | /\bexecutionId:\s*(\S+)/.exec(text)?.[1]; |
| 218 | |
| 219 | // The session DO tears its runtime down after 5 minutes without a request |
| 220 | // (SESSION_TIMEOUT_MS in McpSessionDOBase) and rebuilds it from storage on |
no test coverage detected