()
| 2688 | } |
| 2689 | |
| 2690 | private scheduleMaybeStartQueuedTasks(): void { |
| 2691 | void this.maybeStartQueuedTasks().catch((error: unknown) => { |
| 2692 | log.error("TaskService.maybeStartQueuedTasks failed", { error }); |
| 2693 | }); |
| 2694 | } |
| 2695 | |
| 2696 | private async markTaskLaunchFailed(taskId: string, message: string): Promise<void> { |
| 2697 | assert(taskId.length > 0, "markTaskLaunchFailed requires taskId"); |
no test coverage detected