summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorJonathan Reams <jbreams@mongodb.com>2018-09-11 14:06:26 -0400
committerJonathan Reams <jbreams@mongodb.com>2018-09-14 09:38:03 -0400
commit85ba029f0857c21be48bf0b787e1f4c6e070766b (patch)
tree963aae2e7194f5796e25aa06d04ee860da2af136 /jstests
parent58e6224a7b2ff55f111e1b2fd69218ad43e91cd7 (diff)
downloadmongo-85ba029f0857c21be48bf0b787e1f4c6e070766b.tar.gz
SERVER-34821 Log target connection database separately from username
Diffstat (limited to 'jstests')
-rw-r--r--jstests/ssl/x509_all_the_oids.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/ssl/x509_all_the_oids.js b/jstests/ssl/x509_all_the_oids.js
index b33bf81c4d7..f99d71cd182 100644
--- a/jstests/ssl/x509_all_the_oids.js
+++ b/jstests/ssl/x509_all_the_oids.js
@@ -30,7 +30,7 @@
const NAME =
'role=Datum-72,pseudonym=Datum-65,dmdName=Datum-54,deltaRevocationList=Datum-53,supportedAlgorithms=Datum-52,houseIdentifier=Datum-51,uniqueMember=Datum-50,distinguishedName=Datum-49,protocolInformation=Datum-48,enhancedSearchGuide=Datum-47,dnQualifier=Datum-46,x500UniqueIdentifier=Datum-45,generationQualifier=Datum-44,initials=Datum-43,GN=Datum-42,name=Datum-41,crossCertificatePair=Datum-40,certificateRevocationList=Datum-39,authorityRevocationList=Datum-38,cACertificate=Datum-37,userCertificate=Datum-36,userPassword=Datum-35,seeAlso=Datum-34,roleOccupant=Datum-33,owner=Datum-32,member=Datum-31,supportedApplicationContext=Datum-30,presentationAddress=Datum-29,preferredDeliveryMethod=Datum-28,destinationIndicator=Datum-27,registeredAddress=Datum-26,internationaliSDNNumber=Datum-25,x121Address=Datum-24,facsimileTelephoneNumber=Datum-23,teletexTerminalIdentifier=Datum-22,telexNumber=Datum-21,telephoneNumber=Datum-20,physicalDeliveryOfficeName=Datum-19,postOfficeBox=Datum-18,postalCode=Datum-17,postalAddress=Datum-16,businessCategory=Datum-15,searchGuide=Datum-14,description=Datum-13,title=Datum-12,OU=Datum-11,O=Datum-10,street=Datum-9,ST=NY,L=Datum-7,C=US,serialNumber=Datum-5,SN=Datum-4,CN=Datum-3';
- assert(output.includes('Error: Could not find user ' + NAME + '@$external'),
+ assert(output.includes('Error: Could not find user "' + NAME + '" for db "$external"'),
"Shell is missing unknown user message");
}