From: J. Eric Ivancich Date: Tue, 12 Mar 2019 19:38:54 +0000 (-0400) Subject: rgw: fix log messages using "proceeding" to "processing" X-Git-Tag: v14.2.2~141^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f83b6ea6d0dd824d5ea3201fea0970bcfeeecf95;p=ceph.git rgw: fix log messages using "proceeding" to "processing" Signed-off-by: J. Eric Ivancich (cherry picked from commit 1c2aa902cb2bec690387ace8eb6b8afb5678373f) --- diff --git a/src/rgw/rgw_object_expirer_core.cc b/src/rgw/rgw_object_expirer_core.cc index cd80a758ecdd..bce6ce4882f6 100644 --- a/src/rgw/rgw_object_expirer_core.cc +++ b/src/rgw/rgw_object_expirer_core.cc @@ -218,7 +218,7 @@ bool RGWObjectExpirer::inspect_all_shards(const utime_t& last_run, string shard; store->objexp_get_shard(i, shard); - ldout(store->ctx(), 20) << "proceeding shard = " << shard << dendl; + ldout(store->ctx(), 20) << "processing shard = " << shard << dendl; if (! process_single_shard(shard, last_run, round_start)) { all_done = false; diff --git a/src/rgw/rgw_reshard.cc b/src/rgw/rgw_reshard.cc index a8e57a6805e8..34df7d35aec9 100644 --- a/src/rgw/rgw_reshard.cc +++ b/src/rgw/rgw_reshard.cc @@ -1079,7 +1079,7 @@ int RGWReshard::process_all_logshards() string logshard; get_logshard_oid(i, &logshard); - ldout(store->ctx(), 20) << "proceeding logshard = " << logshard << dendl; + ldout(store->ctx(), 20) << "processing logshard = " << logshard << dendl; ret = process_single_logshard(i); if (ret <0) {