Skip to content

Commit e8acf94

Browse files
authored
Update MDSDaemon.cc
Change MDS log-output line. During mark a new MDS as STANDBY MDS in the FSMap the following log-line will be created: "mds.cephmds01 Monitors have assigned me to become a standby." The last character which is a dot "." have to be removed to be identical to other MDS log-messages which also not ends with a dot at the end. Thanks and best regards Michael Schmaltz Signed-off-by: Michael Schmaltz <[email protected]>
1 parent 3172ed6 commit e8acf94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mds/MDSDaemon.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ void MDSDaemon::handle_mds_map(const cref_t<MMDSMap> &m)
754754
* immediately be assigned a rank).
755755
*/
756756
if (old_state == DS::STATE_NULL) {
757-
dout(1) << "Monitors have assigned me to become a standby." << dendl;
757+
dout(1) << "Monitors have assigned me to become a standby" << dendl;
758758
beacon.set_want_state(*mdsmap, new_state);
759759
} else if (old_state == DS::STATE_STANDBY) {
760760
dout(5) << "I am still standby" << dendl;

0 commit comments

Comments
 (0)