From: Michael Schmaltz <33194208+kevinflynn387@users.noreply.github.com> Date: Wed, 16 Aug 2023 18:57:49 +0000 (+0200) Subject: Update MDSRank.cc - Logoutput: Fix personal pronoun "I" to uppercase X-Git-Tag: v19.0.0~450^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3172ed6a6762f1c5390cc9457eae72d235183261;p=ceph-ci.git Update MDSRank.cc - Logoutput: Fix personal pronoun "I" to uppercase 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> --- 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)); } }