diff options
author | Randolph Tan <randolph@10gen.com> | 2016-02-01 11:00:20 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2016-02-01 11:00:20 -0500 |
commit | e03d69dde4e36d6f30c58f4fe572f35b0add4367 (patch) | |
tree | 7bad684de0be727704c229be63891862d08c78d0 | |
parent | d06ca003737005b22e4fec49984ce7c73a3993a7 (diff) | |
download | mongo-e03d69dde4e36d6f30c58f4fe572f35b0add4367.tar.gz |
SERVER-21789 fix format
-rw-r--r-- | src/mongo/client/replica_set_monitor_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/client/replica_set_monitor_internal.h b/src/mongo/client/replica_set_monitor_internal.h index d4162be40d1..1b669f1ab9b 100644 --- a/src/mongo/client/replica_set_monitor_internal.h +++ b/src/mongo/client/replica_set_monitor_internal.h @@ -184,7 +184,7 @@ public: int consecutiveFailedScans; std::set<HostAndPort> seedNodes; // updated whenever a master reports set membership changes OID maxElectionId; // largest election id observed by this ReplicaSetMonitor - int configVersion{0}; // version number of the replica set config. + int configVersion{0}; // version number of the replica set config. HostAndPort lastSeenMaster; // empty if we have never seen a master. can be same as current Nodes nodes; // maintained sorted and unique by host ScanStatePtr currentScan; // NULL if no scan in progress |