(ownerWorkspaceId: string, wakeId: string)
| 1720 | } |
| 1721 | |
| 1722 | private bashMonitorWakeKey(ownerWorkspaceId: string, wakeId: string): string { |
| 1723 | assert(ownerWorkspaceId.trim().length > 0, "bashMonitorWakeKey requires ownerWorkspaceId"); |
| 1724 | assert(wakeId.trim().length > 0, "bashMonitorWakeKey requires wakeId"); |
| 1725 | return `${ownerWorkspaceId}:${wakeId}`; |
| 1726 | } |
| 1727 | |
| 1728 | private async drainBashMonitorWakes(ownerWorkspaceId: string): Promise<void> { |
| 1729 | const pending = (await this.bashMonitorWakeStore.listPending(ownerWorkspaceId)).filter( |
no test coverage detected