(workspaceName: string)
| 142 | } |
| 143 | |
| 144 | private coderWorkspaceNotFound(workspaceName: string): EnsureReadyResult { |
| 145 | return { |
| 146 | ready: false, |
| 147 | error: `Coder workspace "${workspaceName}" not found`, |
| 148 | errorType: "runtime_not_ready", |
| 149 | }; |
| 150 | } |
| 151 | |
| 152 | private async markReadyIfRepoPresent( |
| 153 | workspaceName: string, |