We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55ec289 commit a434d6eCopy full SHA for a434d6e
test/tools/unified-spec-runner/entities.ts
@@ -267,6 +267,9 @@ export class UnifiedMongoClient extends MongoClient {
267
268
if (description.uriOptions && description.uriOptions.appName) {
269
options.appName = description.uriOptions.appName;
270
+ } else {
271
+ const appNameNonce = new Date().getTime().toString();
272
+ options.appName = `unified-spec-runner-${appNameNonce}`;
273
}
274
275
super(uri, options);
0 commit comments