We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cc8d7e commit 54278d9Copy full SHA for 54278d9
1 file changed
test/tools/unified-spec-runner/entities.ts
@@ -265,11 +265,8 @@ export class UnifiedMongoClient extends MongoClient {
265
};
266
}
267
268
- const appNameNonce = new Date().getTime().toString();
269
if (description.uriOptions && description.uriOptions.appName) {
270
- options.appName = description.uriOptions.appName + '-' + appNameNonce;
271
- } else {
272
- options.appName = `unified-spec-runner-${appNameNonce}`;
+ options.appName = description.uriOptions.appName;
273
274
console.log(`Client options appName: ${options.appName}`); // TODO: remove before merging
275
0 commit comments