summaryrefslogtreecommitdiff
path: root/src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp
diff options
context:
space:
mode:
authorDavid Storch <david.storch@mongodb.com>2021-10-21 16:29:10 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-11-10 17:13:38 +0000
commit1b51a502f9201aacf760ba37b02888bbbff831da (patch)
treece2ff376a49ae3738930f4ce42eb2fbb7036582c /src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp
parentb9dd38f987381211ca5217063c949638f028b592 (diff)
downloadmongo-1b51a502f9201aacf760ba37b02888bbbff831da.tar.gz
SERVER-59512 add new, cleaner query interface to DBClientBase
The new interface uses FindCommandRequest, and avoids any characteristics that relate specifically to the no-longer-supported OP_QUERY wire protocol message. This patch moves all callers of 'findOne()' onto the new API, but more work is required to fully eliminate the old 'query()' API from DBClientBase.
Diffstat (limited to 'src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp')
-rw-r--r--src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp b/src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp
index 1b341ab4b11..08f95264959 100644
--- a/src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp
+++ b/src/mongo/db/read_write_concern_defaults_cache_lookup_mongod.cpp
@@ -49,7 +49,7 @@ BSONObj getPersistedDefaultRWConcernDocument(OperationContext* opCtx) {
!MONGO_unlikely(failRWCDefaultsLookup.shouldFail()));
DBDirectClient client(opCtx);
- return client.findOne(NamespaceString::kConfigSettingsNamespace.toString(),
+ return client.findOne(NamespaceString::kConfigSettingsNamespace,
BSON("_id" << ReadWriteConcernDefaults::kPersistedDocumentId));
}