From ee984b9ffc309c6ad733739fbebff820988998a7 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 2 May 2018 16:11:29 -0400 Subject: [PATCH] rgw: raise log level on coroutine shutdown errors Fixes: http://tracker.ceph.com/issues/23974 Signed-off-by: Casey Bodley --- src/rgw/rgw_coroutine.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rgw/rgw_coroutine.cc b/src/rgw/rgw_coroutine.cc index 47e2d0630b84f..fecfbb4c679cd 100644 --- a/src/rgw/rgw_coroutine.cc +++ b/src/rgw/rgw_coroutine.cc @@ -691,7 +691,7 @@ int RGWCoroutinesManager::run(list& stacks) ret = completion_mgr->get_next(&io); lock.get_write(); if (ret < 0) { - ldout(cct, 0) << "ERROR: 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, io, &blocked_count); } @@ -702,7 +702,7 @@ next: ret = completion_mgr->get_next(&io); lock.get_write(); if (ret < 0) { - ldout(cct, 0) << "ERROR: 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; -- 2.39.5