diff options
author | matt dannenberg <matt.dannenberg@10gen.com> | 2015-10-19 06:03:29 -0400 |
---|---|---|
committer | matt dannenberg <matt.dannenberg@10gen.com> | 2015-10-19 06:03:29 -0400 |
commit | 16b1fae1bb0b31303b987a91e61668ac4fa7b513 (patch) | |
tree | eb11e6c622cac10fa5767cc0cbe6724b274df4ab /src/mongo/db | |
parent | 4bf4addd67baa0eba729f6fa08f6d5c07171fa69 (diff) | |
download | mongo-16b1fae1bb0b31303b987a91e61668ac4fa7b513.tar.gz |
SERVER-20845 remove audit::logReplSetReconfig to green up enterprise builders
Diffstat (limited to 'src/mongo/db')
-rw-r--r-- | src/mongo/db/repl/topology_coordinator_impl.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mongo/db/repl/topology_coordinator_impl.cpp b/src/mongo/db/repl/topology_coordinator_impl.cpp index 99150a16f23..24a3dfef74f 100644 --- a/src/mongo/db/repl/topology_coordinator_impl.cpp +++ b/src/mongo/db/repl/topology_coordinator_impl.cpp @@ -1888,10 +1888,6 @@ void TopologyCoordinatorImpl::updateConfig(const ReplicaSetConfig& newConfig, _updateHeartbeatDataForReconfig(newConfig, selfIndex, now); _stepDownPending = false; - BSONObj oldConfigObjForAudit = _rsConfig.toBSON(); - BSONObj newConfigObjForAudit = newConfig.toBSON(); - audit::logReplSetReconfig( - ClientBasic::getCurrent(), &oldConfigObjForAudit, &newConfigObjForAudit); _rsConfig = newConfig; _selfIndex = selfIndex; _forceSyncSourceIndex = -1; |