@@ -171,8 +171,6 @@ export abstract class TimeoutContext {
171171
172172 abstract get clearServerSelectionTimeout ( ) : boolean ;
173173
174- abstract get clearConnectionCheckoutTimeout ( ) : boolean ;
175-
176174 abstract get timeoutForSocketWrite ( ) : Timeout | null ;
177175
178176 abstract get timeoutForSocketRead ( ) : Timeout | null ;
@@ -193,7 +191,6 @@ export class CSOTTimeoutContext extends TimeoutContext {
193191 serverSelectionTimeoutMS : number ;
194192 socketTimeoutMS ?: number ;
195193
196- clearConnectionCheckoutTimeout : boolean ;
197194 clearServerSelectionTimeout : boolean ;
198195
199196 private _serverSelectionTimeout ?: Timeout | null ;
@@ -212,7 +209,6 @@ export class CSOTTimeoutContext extends TimeoutContext {
212209 this . socketTimeoutMS = options . socketTimeoutMS ;
213210
214211 this . clearServerSelectionTimeout = false ;
215- this . clearConnectionCheckoutTimeout = true ;
216212 }
217213
218214 get maxTimeMS ( ) : number {
@@ -331,13 +327,11 @@ export class CSOTTimeoutContext extends TimeoutContext {
331327export class LegacyTimeoutContext extends TimeoutContext {
332328 options : LegacyTimeoutContextOptions ;
333329 clearServerSelectionTimeout : boolean ;
334- clearConnectionCheckoutTimeout : boolean ;
335330
336331 constructor ( options : LegacyTimeoutContextOptions ) {
337332 super ( ) ;
338333 this . options = options ;
339334 this . clearServerSelectionTimeout = true ;
340- this . clearConnectionCheckoutTimeout = true ;
341335 }
342336
343337 csotEnabled ( ) : this is CSOTTimeoutContext {
0 commit comments