summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth
diff options
context:
space:
mode:
authorAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2020-06-29 23:08:09 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-07-01 16:22:45 +0000
commitd4e7ea57599b44353b5393afedee8ae5670837b3 (patch)
tree2c0717c768faa292590bd6018d7db7038129a23e /src/mongo/db/auth
parent5ffbd8f8322651b4953f29da0cde9e31eab039d4 (diff)
downloadmongo-d4e7ea57599b44353b5393afedee8ae5670837b3.tar.gz
SERVER-49151 Fix malformed LOGV2 and assertion IDs
Diffstat (limited to 'src/mongo/db/auth')
-rw-r--r--src/mongo/db/auth/sasl_mechanism_registry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/auth/sasl_mechanism_registry.cpp b/src/mongo/db/auth/sasl_mechanism_registry.cpp
index b2c47eed923..667fa7a811e 100644
--- a/src/mongo/db/auth/sasl_mechanism_registry.cpp
+++ b/src/mongo/db/auth/sasl_mechanism_registry.cpp
@@ -189,7 +189,7 @@ ServiceContext::ConstructorActionRegisterer SASLServerMechanismRegistryValidatio
for (const auto& mech : saslGlobalParams.authenticationMechanisms) {
auto it = std::find(supportedMechanisms.cbegin(), supportedMechanisms.cend(), mech);
if (it == supportedMechanisms.end()) {
- LOGV2_ERROR(47429001,
+ LOGV2_ERROR(4742901,
"SASL Mechanism '{mechanism}' is not supported",
"Unsupported SASL mechanism",
"mechanism"_attr = mech);