We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18d0422 commit e2d6c7aCopy full SHA for e2d6c7a
components/ws-manager-bridge/src/bridge.ts
@@ -613,9 +613,9 @@ export class WorkspaceManagerBridge implements Disposable {
613
614
protected async markWorkspaceInstanceAsStopped(ctx: TraceContext, info: RunningWorkspaceInfo, now: Date) {
615
const nowISO = now.toISOString();
616
+ info.latestInstance.status.phase = "stopped";
617
info.latestInstance.stoppingTime = nowISO;
618
info.latestInstance.stoppedTime = nowISO;
- info.latestInstance.status.phase = "stopped";
619
await this.workspaceDB.trace(ctx).storeInstance(info.latestInstance);
620
621
await this.messagebus.notifyOnInstanceUpdate(ctx, info.workspace.ownerId, info.latestInstance);
0 commit comments