]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: fix log messages using "proceeding" to "processing"
authorJ. Eric Ivancich <ivancich@redhat.com>
Tue, 12 Mar 2019 19:38:54 +0000 (15:38 -0400)
committerJ. Eric Ivancich <ivancich@redhat.com>
Fri, 19 Jul 2019 16:28:19 +0000 (12:28 -0400)
Signed-off-by: J. Eric Ivancich <ivancich@redhat.com>
(cherry picked from commit 1c2aa902cb2bec690387ace8eb6b8afb5678373f)

src/rgw/rgw_object_expirer_core.cc
src/rgw/rgw_reshard.cc

index fde860fd72c3fc218dabab200923648356cdab67..3a71dd2e6fa176c86912b24d20f18d9a0d0d7127 100644 (file)
@@ -217,7 +217,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;
index 4aeb57dc3d29677e845717cd3b26bc2167fe47af..dc86cb47ea9fd295ef1db65696d9ecf343e63d23 100644 (file)
@@ -1103,7 +1103,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) {