(workspaceId: string)
| 9013 | } |
| 9014 | |
| 9015 | private requestReportedTaskCleanupRecheck(workspaceId: string): Promise<void> { |
| 9016 | assert( |
| 9017 | workspaceId.length > 0, |
| 9018 | "requestReportedTaskCleanupRecheck: workspaceId must be non-empty" |
| 9019 | ); |
| 9020 | |
| 9021 | return this.workspaceEventLocks.withLock(workspaceId, async () => { |
| 9022 | await this.cleanupReportedLeafTask(workspaceId); |
| 9023 | }); |
| 9024 | } |
| 9025 | |
| 9026 | private async requestReportedChildCleanupRechecks(parentWorkspaceId: string): Promise<void> { |
| 9027 | assert( |
no test coverage detected