Skip to content

Commit

Permalink
SERVER-37118: Fix invokation argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerjackson committed Sep 25, 2018
1 parent 3f618b8 commit fbeeccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mongo/db/repl/replication_coordinator_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2254,7 +2254,7 @@ Status ReplicationCoordinatorImpl::processReplSetReconfig(OperationContext* opCt
}

BSONObj oldConfigObj = oldConfig.toBSON();
audit::logReplSetReconfig(opCtx->getClient(), &newConfigObj, &oldConfigObj);
audit::logReplSetReconfig(opCtx->getClient(), &oldConfigObj, &newConfigObj);

Status status = newConfig.initialize(newConfigObj, oldConfig.getReplicaSetId());
if (!status.isOK()) {
Expand Down

0 comments on commit fbeeccc

Please sign in to comment.