]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
Update MDSRank.cc - Logoutput: Fix personal pronoun "I" to uppercase
authorMichael Schmaltz <33194208+kevinflynn387@users.noreply.github.com>
Wed, 16 Aug 2023 18:57:49 +0000 (20:57 +0200)
committerGitHub <noreply@github.com>
Wed, 16 Aug 2023 18:57:49 +0000 (20:57 +0200)
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

index 31ea7f6710f92af726141b995fab189120c2211f..b98ff861012f29a3d8a11beb0ec226acbb0ddced 100644 (file)
@@ -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));
     }
   }