(input: { workspaceId: string; runId: string })
| 243 | } |
| 244 | |
| 245 | async interruptRun(input: { workspaceId: string; runId: string }): Promise<WorkflowRunRecord> { |
| 246 | return await this.interruptRunTree(input, new Set(), false); |
| 247 | } |
| 248 | |
| 249 | private async interruptRunTree( |
| 250 | input: { workspaceId: string; runId: string }, |
no test coverage detected