summaryrefslogtreecommitdiff
path: root/src/mongo/s/catalog/sharding_catalog_client_test.cpp
diff options
context:
space:
mode:
authorAllison Easton <allison.easton@mongodb.com>2021-07-01 07:00:02 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-07-02 07:03:29 +0000
commitad76f3d82345b004a54010ba235f17c716eee0fd (patch)
tree1b6c42b139757074397213555b0fc04c8ace8715 /src/mongo/s/catalog/sharding_catalog_client_test.cpp
parent8edc5e1b01d5f5f0181559042b529583ca2a5c6e (diff)
downloadmongo-ad76f3d82345b004a54010ba235f17c716eee0fd.tar.gz
SERVER-53033 Investigate usages on "not master" error messages in sharding unittests
Diffstat (limited to 'src/mongo/s/catalog/sharding_catalog_client_test.cpp')
-rw-r--r--src/mongo/s/catalog/sharding_catalog_client_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/s/catalog/sharding_catalog_client_test.cpp b/src/mongo/s/catalog/sharding_catalog_client_test.cpp
index eaffa9445d9..54528489f36 100644
--- a/src/mongo/s/catalog/sharding_catalog_client_test.cpp
+++ b/src/mongo/s/catalog/sharding_catalog_client_test.cpp
@@ -246,7 +246,7 @@ TEST_F(ShardingCatalogClientTest, GetDatabaseStaleSecondaryRetryNoPrimary) {
ASSERT_EQUALS(testHost, request.target);
// Make it so when it attempts to retarget and retry it will get a NotWritablePrimary error.
configTargeter()->setFindHostReturnValue(
- Status(ErrorCodes::NotWritablePrimary, "no config master"));
+ Status(ErrorCodes::NotWritablePrimary, "no config primary"));
return vector<BSONObj>{};
});
@@ -695,7 +695,7 @@ TEST_F(ShardingCatalogClientTest, RunUserManagementWriteCommandNotWritablePrimar
onCommand([](const RemoteCommandRequest& request) {
BSONObjBuilder responseBuilder;
CommandHelpers::appendCommandStatusNoThrow(
- responseBuilder, Status(ErrorCodes::NotWritablePrimary, "not master"));
+ responseBuilder, Status(ErrorCodes::NotWritablePrimary, "not primary"));
return responseBuilder.obj();
});
}
@@ -726,7 +726,7 @@ TEST_F(ShardingCatalogClientTest, RunUserManagementWriteCommandNotWritablePrimar
BSONObjBuilder responseBuilder;
CommandHelpers::appendCommandStatusNoThrow(
- responseBuilder, Status(ErrorCodes::NotWritablePrimary, "not master"));
+ responseBuilder, Status(ErrorCodes::NotWritablePrimary, "not primary"));
// Ensure that when the catalog manager tries to retarget after getting the
// NotWritablePrimary response, it will get back a new target.