summaryrefslogtreecommitdiff
path: root/src/mongo/client
diff options
context:
space:
mode:
authorAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2020-06-29 23:08:09 +0000
committerAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2020-07-02 17:28:36 +0000
commit5d7adc4ee20c0fe752d072021efa484b5f86f894 (patch)
treea58062bb78014c573ac0d6e4183b163a17b1a7ab /src/mongo/client
parent4b96db94125b5e0ca1da0c91f09a5fca8c94d9ab (diff)
downloadmongo-5d7adc4ee20c0fe752d072021efa484b5f86f894.tar.gz
SERVER-49151 Fix malformed LOGV2 and assertion IDs
(cherry picked from commit d4e7ea57599b44353b5393afedee8ae5670837b3)
Diffstat (limited to 'src/mongo/client')
-rw-r--r--src/mongo/client/sdam/server_selector.cpp2
-rw-r--r--src/mongo/client/server_is_master_monitor.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/client/sdam/server_selector.cpp b/src/mongo/client/sdam/server_selector.cpp
index d21cab07545..d25cc535684 100644
--- a/src/mongo/client/sdam/server_selector.cpp
+++ b/src/mongo/client/sdam/server_selector.cpp
@@ -218,7 +218,7 @@ void SdamServerSelector::filterTags(std::vector<ServerDescriptionPtr>* servers,
}
} else {
LOGV2_WARNING(
- 46712002,
+ 4671202,
"Invalid tags specified for server selection; tags should be specified as "
"bson Objects",
"tag"_attr = *it);
diff --git a/src/mongo/client/server_is_master_monitor.cpp b/src/mongo/client/server_is_master_monitor.cpp
index 5e4ab62207c..08fff6468e7 100644
--- a/src/mongo/client/server_is_master_monitor.cpp
+++ b/src/mongo/client/server_is_master_monitor.cpp
@@ -226,7 +226,7 @@ void SingleServerIsMasterMonitor::_doRemoteCommand() {
if (!swCbHandle.isOK()) {
_onIsMasterFailure(swCbHandle.getStatus(), BSONObj());
- uasserted(46156012, swCbHandle.getStatus().toString());
+ uasserted(4615612, swCbHandle.getStatus().toString());
}
_isMasterOutstanding = true;