MCPcopy
hub / github.com/coder/mux / disposeProvisioningSession

Method disposeProvisioningSession

src/node/services/coderService.ts:570–577  ·  view source on GitHub ↗
(workspaceName: string)

Source from the content-addressed store, hash-verified

568 }
569
570 async disposeProvisioningSession(workspaceName: string): Promise<void> {
571 const session = this.provisioningSessions.get(workspaceName);
572 if (!session) {
573 return;
574 }
575 this.provisioningSessions.delete(workspaceName);
576 await session.dispose();
577 }
578
579 /**
580 * Verify the current Coder CLI session is authenticated.

Callers 3

validateBeforePersistMethod · 0.80
postCreateSetupMethod · 0.80

Calls 3

getMethod · 0.65
disposeMethod · 0.65
deleteMethod · 0.45

Tested by

no test coverage detected