From: Casey Bodley Date: Wed, 2 May 2018 20:11:29 +0000 (-0400) Subject: rgw: raise log level on coroutine shutdown errors X-Git-Tag: v12.2.6~130^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1f6e8822453dfa1dc7b3bc22bbb598899cb44560;p=ceph.git rgw: raise log level on coroutine shutdown errors Fixes: http://tracker.ceph.com/issues/23974 Signed-off-by: Casey Bodley (cherry picked from commit ee984b9ffc309c6ad733739fbebff820988998a7) --- diff --git a/src/rgw/rgw_coroutine.cc b/src/rgw/rgw_coroutine.cc index 7c103bfa643f..152aead410ec 100644 --- a/src/rgw/rgw_coroutine.cc +++ b/src/rgw/rgw_coroutine.cc @@ -553,7 +553,7 @@ int RGWCoroutinesManager::run(list& stacks) while (blocked_count - interval_wait_count >= ops_window) { ret = completion_mgr->get_next((void **)&blocked_stack); if (ret < 0) { - ldout(cct, 0) << "ERROR: failed to clone shard, completion_mgr.get_next() returned ret=" << ret << dendl; + ldout(cct, 5) << "completion_mgr.get_next() returned ret=" << ret << dendl; } handle_unblocked_stack(context_stacks, scheduled_stacks, blocked_stack, &blocked_count); } @@ -565,7 +565,7 @@ int RGWCoroutinesManager::run(list& stacks) while (scheduled_stacks.empty() && blocked_count > 0) { ret = completion_mgr->get_next((void **)&blocked_stack); if (ret < 0) { - ldout(cct, 0) << "ERROR: failed to clone shard, completion_mgr.get_next() returned ret=" << ret << dendl; + ldout(cct, 5) << "completion_mgr.get_next() returned ret=" << ret << dendl; } if (going_down) { ldout(cct, 5) << __func__ << "(): was stopped, exiting" << dendl;