(
index: AgentTaskIndex,
taskId: string
)
| 1350 | } |
| 1351 | |
| 1352 | private findWorkflowTaskOwnerInAncestry( |
| 1353 | index: AgentTaskIndex, |
| 1354 | taskId: string |
| 1355 | ): WorkflowTaskOwner | null { |
| 1356 | return this.findWorkflowTaskOwnersInAncestry(index, taskId)[0] ?? null; |
| 1357 | } |
| 1358 | |
| 1359 | private async getInactiveWorkflowTaskOwner( |
| 1360 | owner: WorkflowTaskOwner |
no test coverage detected