* Delete persisted init status from disk. * Useful for testing or manual cleanup. * Does NOT clear in-memory state (for active replay).
(workspaceId: string)
| 373 | * Does NOT clear in-memory state (for active replay). |
| 374 | */ |
| 375 | async deleteInitStatus(workspaceId: string): Promise<void> { |
| 376 | await this.store.deletePersisted(workspaceId); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * Clear in-memory state for a workspace. |
no test coverage detected