From 4c1bb9ae80646a808319fb2e9b4415a6f2da33bd Mon Sep 17 00:00:00 2001 From: Dianna Hohensee Date: Tue, 1 Dec 2015 09:12:11 -0500 Subject: SERVER-14501 moved ReplSettings class implementation from repl_settings.h into repl_settings.cpp --- src/mongo/db/repl/replset_commands.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mongo/db/repl/replset_commands.cpp') diff --git a/src/mongo/db/repl/replset_commands.cpp b/src/mongo/db/repl/replset_commands.cpp index ea9fba690ad..a81d614b05a 100644 --- a/src/mongo/db/repl/replset_commands.cpp +++ b/src/mongo/db/repl/replset_commands.cpp @@ -351,7 +351,8 @@ public: configObj = cmdObj["replSetInitiate"].Obj(); } - std::string replSetString = ReplicationCoordinator::get(txn)->getSettings().replSet; + std::string replSetString = + ReplicationCoordinator::get(txn)->getSettings().getReplSetString(); if (replSetString.empty()) { return appendCommandStatus( result, -- cgit v1.2.1