summaryrefslogtreecommitdiff
path: root/src/mongo/s/cluster_identity_loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/cluster_identity_loader.h')
-rw-r--r--src/mongo/s/cluster_identity_loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/cluster_identity_loader.h b/src/mongo/s/cluster_identity_loader.h
index d34f5368850..c8871cb1c56 100644
--- a/src/mongo/s/cluster_identity_loader.h
+++ b/src/mongo/s/cluster_identity_loader.h
@@ -71,7 +71,7 @@ public:
* If another thread is already in the process of loading the cluster ID, concurrent calls will
* wait for that thread to finish and then return its results.
*/
- Status loadClusterId(OperationContext* txn, const repl::ReadConcernLevel& readConcernLevel);
+ Status loadClusterId(OperationContext* opCtx, const repl::ReadConcernLevel& readConcernLevel);
/**
* Called if the config.version document is rolled back. Notifies the ClusterIdentityLoader
@@ -90,7 +90,7 @@ private:
* Queries the config.version collection on the config server, extracts the cluster ID from
* the version document, and returns it.
*/
- StatusWith<OID> _fetchClusterIdFromConfig(OperationContext* txn,
+ StatusWith<OID> _fetchClusterIdFromConfig(OperationContext* opCtx,
const repl::ReadConcernLevel& readConcernLevel);
stdx::mutex _mutex;