(sessionId: string)
| 3139 | } |
| 3140 | |
| 3141 | private async waitForBackendDisposal(sessionId: string): Promise<void> { |
| 3142 | const invalidation = this.backendInvalidations.get(sessionId); |
| 3143 | if (!invalidation?.disposal) return; |
| 3144 | const outcome = await invalidation.outcome; |
| 3145 | if (!outcome.ok) throw invalidation.failure ?? outcome.error; |
| 3146 | } |
| 3147 | |
| 3148 | private async clearBackendQuarantineForActivation( |
| 3149 | sessionId: string, |
no test coverage detected