File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1- import type { Socket , SocketConnectOpts } from 'net' ;
1+ kimport type { Socket , SocketConnectOpts } from 'net' ;
22import * as net from 'net' ;
33import type { ConnectionOptions as TLSConnectionOpts , TLSSocket } from 'tls' ;
44import * as tls from 'tls' ;
Original file line number Diff line number Diff line change @@ -810,8 +810,6 @@ export class ModernConnection extends TypedEventEmitter<ConnectionEvents> {
810810 /** @internal */
811811 [ kClusterTime ] : Document | null ;
812812
813- bufferPool : BufferPool ;
814-
815813 /** @event */
816814 static readonly COMMAND_STARTED = COMMAND_STARTED ;
817815 /** @event */
@@ -875,8 +873,6 @@ export class ModernConnection extends TypedEventEmitter<ConnectionEvents> {
875873 // hook the message stream up to the passed in stream
876874 this . socket . pipe ( this [ kMessageStream ] ) ;
877875 this [ kMessageStream ] . pipe ( this . socket ) ;
878-
879- this . bufferPool = new BufferPool ( ) ;
880876 }
881877
882878 get description ( ) : StreamDescription {
You can’t perform that action at this time.
0 commit comments