Skip to content

Commit dd33f10

Browse files
committed
Merge PR ceph#53028 into main
* refs/pull/53028/head: Update MDSDaemon.cc Update MDSRank.cc - Logoutput: Fix personal pronoun "I" to uppercase Reviewed-by: Venky Shankar <[email protected]>
2 parents 4859fef + e8acf94 commit dd33f10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/mds/MDSDaemon.cc

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

src/mds/MDSRank.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2305,11 +2305,11 @@ void MDSRankDispatcher::handle_mds_map(
23052305
// "bootstrapping" state.
23062306
usleep(sleep_rank_change);
23072307
} if (state == MDSMap::STATE_STANDBY_REPLAY) {
2308-
dout(1) << "handle_mds_map i am now mds." << mds_gid << "." << incarnation
2308+
dout(1) << "handle_mds_map I am now mds." << mds_gid << "." << incarnation
23092309
<< " replaying mds." << whoami << "." << incarnation << dendl;
23102310
messenger->set_myname(entity_name_t::MDS(mds_gid));
23112311
} else {
2312-
dout(1) << "handle_mds_map i am now mds." << whoami << "." << incarnation << dendl;
2312+
dout(1) << "handle_mds_map I am now mds." << whoami << "." << incarnation << dendl;
23132313
messenger->set_myname(entity_name_t::MDS(whoami));
23142314
}
23152315
}

0 commit comments

Comments
 (0)