File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
integration/connection-monitoring-and-pooling
tools/unified-spec-runner Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { loadSpecTests } from '../../spec';
2
2
import { type CmapTest , runCmapTestSuite } from '../../tools/cmap_spec_runner' ;
3
3
import { runUnifiedSuite } from '../../tools/unified-spec-runner/runner' ;
4
4
5
- describe ( 'Connection Monitoring and Pooling (Node Driver)' , function ( ) {
5
+ describe . skip ( 'Connection Monitoring and Pooling (Node Driver)' , function ( ) {
6
6
const cmapTests : CmapTest [ ] = loadSpecTests (
7
7
'../integration/connection-monitoring-and-pooling/cmap-node-specs'
8
8
) ;
Original file line number Diff line number Diff line change @@ -190,7 +190,8 @@ export class UnifiedMongoClient extends MongoClient {
190
190
[ Symbol . for ( '@@mdb.enableMongoLogger' ) ] : true ,
191
191
[ Symbol . for ( '@@mdb.internalLoggerConfig' ) ] : componentSeverities ,
192
192
...getEnvironmentalOptions ( ) ,
193
- ...( description . serverApi ? { serverApi : description . serverApi } : { } )
193
+ ...( description . serverApi ? { serverApi : description . serverApi } : { } ) ,
194
+ mongoLoggerClientOptions : { mongodbLogPath : logCollector }
194
195
} as any ) ;
195
196
this . logCollector = logCollector ;
196
197
You can’t perform that action at this time.
0 commit comments