diff options
author | Casey Bodley <cbodley@redhat.com> | 2018-05-02 22:11:29 +0200 |
---|---|---|
committer | Casey Bodley <cbodley@redhat.com> | 2018-05-02 22:11:31 +0200 |
commit | ee984b9ffc309c6ad733739fbebff820988998a7 (patch) | |
tree | 915243a58ff6ebd913f3952fa82a8503f120bbd0 /src/rgw/rgw_coroutine.cc | |
parent | Merge pull request #21763 from dillaman/wip-23955 (diff) | |
download | ceph-ee984b9ffc309c6ad733739fbebff820988998a7.tar.xz ceph-ee984b9ffc309c6ad733739fbebff820988998a7.zip |
rgw: raise log level on coroutine shutdown errors
Fixes: http://tracker.ceph.com/issues/23974
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Diffstat (limited to 'src/rgw/rgw_coroutine.cc')
-rw-r--r-- | src/rgw/rgw_coroutine.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rgw/rgw_coroutine.cc b/src/rgw/rgw_coroutine.cc index 47e2d0630b8..fecfbb4c679 100644 --- a/src/rgw/rgw_coroutine.cc +++ b/src/rgw/rgw_coroutine.cc @@ -691,7 +691,7 @@ int RGWCoroutinesManager::run(list<RGWCoroutinesStack *>& 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; |