* Read persisted init status from disk. * Returns null if no status file exists.
(workspaceId: string)
| 349 | * Returns null if no status file exists. |
| 350 | */ |
| 351 | async readInitStatus(workspaceId: string): Promise<InitStatus | null> { |
| 352 | return this.store.readPersisted(workspaceId); |
| 353 | } |
| 354 | |
| 355 | /** |
| 356 | * Replay init events for a workspace. |
no test coverage detected