From 3172ed6a6762f1c5390cc9457eae72d235183261 Mon Sep 17 00:00:00 2001 From: Michael Schmaltz <33194208+kevinflynn387@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:57:49 +0200 Subject: [PATCH] Update MDSRank.cc - Logoutput: Fix personal pronoun "I" to uppercase MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Within this both MDS log-output lines the personal pronoun "I" is incorrectly written in lowercase ("i" instead of "I"). Correct will be the personal pronoun in uppercase -> “I” Signed-off-by: Michael Schmaltz <33194208+kevinflynn387@users.noreply.github.com> --- src/mds/MDSRank.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mds/MDSRank.cc b/src/mds/MDSRank.cc index 31ea7f6710f..b98ff861012 100644 --- a/src/mds/MDSRank.cc +++ b/src/mds/MDSRank.cc @@ -2301,11 +2301,11 @@ void MDSRankDispatcher::handle_mds_map( // "bootstrapping" state. usleep(sleep_rank_change); } if (state == MDSMap::STATE_STANDBY_REPLAY) { - dout(1) << "handle_mds_map i am now mds." << mds_gid << "." << incarnation + dout(1) << "handle_mds_map I am now mds." << mds_gid << "." << incarnation << " replaying mds." << whoami << "." << incarnation << dendl; messenger->set_myname(entity_name_t::MDS(mds_gid)); } else { - dout(1) << "handle_mds_map i am now mds." << whoami << "." << incarnation << dendl; + dout(1) << "handle_mds_map I am now mds." << whoami << "." << incarnation << dendl; messenger->set_myname(entity_name_t::MDS(whoami)); } } -- 2.39.5