3068
const provisional = this._provisionalSessions.get(sessionId);
3069
if (provisional) {
3071
>
// Drop any peer-host entry created for this still-provisional
3072
>
// session (its peers were disposed by `_disposeChildChats` above).
3073
>
this._sessions.deleteAndDispose(sessionId);
3074
>
this._activeClients.get(provisional.sessionUri)?.dispose();
3075
>
this._activeClients.delete(provisional.sessionUri);
3076
>
return;
3077
>
}
3078
const entry = this._findAnySession(sessionId);
3079
const sessionUri = AgentSession.uri(this.id, sessionId);