summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/rollback_source_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/rollback_source_impl.cpp')
-rw-r--r--src/mongo/db/repl/rollback_source_impl.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/repl/rollback_source_impl.cpp b/src/mongo/db/repl/rollback_source_impl.cpp
index 26a9240bbc8..aecd404f865 100644
--- a/src/mongo/db/repl/rollback_source_impl.cpp
+++ b/src/mongo/db/repl/rollback_source_impl.cpp
@@ -67,11 +67,13 @@ int RollbackSourceImpl::getRollbackId() const {
BSONObj RollbackSourceImpl::getLastOperation() const {
const Query query = Query().sort(BSON("$natural" << -1));
- return _getConnection()->findOne(_collectionName, query, 0, QueryOption_SlaveOk);
+ return _getConnection()->findOne(_collectionName, query, nullptr, QueryOption_SlaveOk);
}
BSONObj RollbackSourceImpl::findOne(const NamespaceString& nss, const BSONObj& filter) const {
- return _getConnection()->findOne(nss.toString(), filter, NULL, QueryOption_SlaveOk).getOwned();
+ return _getConnection()
+ ->findOne(nss.toString(), filter, nullptr, QueryOption_SlaveOk)
+ .getOwned();
}
std::pair<BSONObj, NamespaceString> RollbackSourceImpl::findOneByUUID(const std::string& db,