From: Michael Schmaltz <33194208+kevinflynn387@users.noreply.github.com> Date: Wed, 16 Aug 2023 19:11:00 +0000 (+0200) Subject: Update MDSDaemon.cc X-Git-Tag: v19.0.0~450^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e8acf94175635e899b643125d369ca09a9151f11;p=ceph.git 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 <33194208+kevinflynn387@users.noreply.github.com> --- diff --git a/src/mds/MDSDaemon.cc b/src/mds/MDSDaemon.cc index 669066fb7802..76f02d2993a2 100644 --- a/src/mds/MDSDaemon.cc +++ b/src/mds/MDSDaemon.cc @@ -754,7 +754,7 @@ void MDSDaemon::handle_mds_map(const cref_t &m) * immediately be assigned a rank). */ if (old_state == DS::STATE_NULL) { - dout(1) << "Monitors have assigned me to become a standby." << dendl; + dout(1) << "Monitors have assigned me to become a standby" << dendl; beacon.set_want_state(*mdsmap, new_state); } else if (old_state == DS::STATE_STANDBY) { dout(5) << "I am still standby" << dendl;