(runId: string, temporalRunId?: string, auth?: AuthContext | null)
| 1195 | } |
| 1196 | |
| 1197 | async cancelRun(runId: string, temporalRunId?: string, auth?: AuthContext | null): Promise<void> { |
| 1198 | this.logger.warn( |
| 1199 | `Cancelling workflow run ${runId} (temporalRunId=${temporalRunId ?? 'latest'})`, |
| 1200 | ); |
| 1201 | await this.requireRunAccess(runId, auth); |
| 1202 | await this.temporalService.cancelWorkflow({ workflowId: runId, runId: temporalRunId }); |
| 1203 | } |
| 1204 | |
| 1205 | async buildDataFlows( |
| 1206 | runId: string, |
no test coverage detected