summaryrefslogtreecommitdiff
path: root/src/mongo/executor/remote_command_request.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/executor/remote_command_request.cpp')
-rw-r--r--src/mongo/executor/remote_command_request.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/executor/remote_command_request.cpp b/src/mongo/executor/remote_command_request.cpp
index 44834b2abc4..e5362f17386 100644
--- a/src/mongo/executor/remote_command_request.cpp
+++ b/src/mongo/executor/remote_command_request.cpp
@@ -56,28 +56,28 @@ RemoteCommandRequest::RemoteCommandRequest(RequestId requestId,
const std::string& theDbName,
const BSONObj& theCmdObj,
const BSONObj& metadataObj,
- OperationContext* txn,
+ OperationContext* opCtx,
Milliseconds timeoutMillis)
: id(requestId),
target(theTarget),
dbname(theDbName),
metadata(metadataObj),
cmdObj(theCmdObj),
- txn(txn),
+ opCtx(opCtx),
timeout(timeoutMillis) {}
RemoteCommandRequest::RemoteCommandRequest(const HostAndPort& theTarget,
const std::string& theDbName,
const BSONObj& theCmdObj,
const BSONObj& metadataObj,
- OperationContext* txn,
+ OperationContext* opCtx,
Milliseconds timeoutMillis)
: RemoteCommandRequest(requestIdCounter.addAndFetch(1),
theTarget,
theDbName,
theCmdObj,
metadataObj,
- txn,
+ opCtx,
timeoutMillis) {}
std::string RemoteCommandRequest::toString() const {