Skip to content

Commit 2158f58

Browse files
remove timeoutMS from client instantiation
1 parent 88c5368 commit 2158f58

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/benchmarks/driverBench/common.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ function loadSpecString(filePath) {
2424
}
2525

2626
function makeClient() {
27-
this.client = new MongoClient(process.env.MONGODB_URI || 'mongodb://127.0.0.1:27017', {
28-
timeoutMS: 0
29-
});
27+
this.client = new MongoClient(process.env.MONGODB_URI || 'mongodb://127.0.0.1:27017', {});
3028
}
3129

3230
function connectClient() {

0 commit comments

Comments
 (0)