]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: raise log level on coroutine shutdown errors 21791/head
authorCasey Bodley <cbodley@redhat.com>
Wed, 2 May 2018 20:11:29 +0000 (16:11 -0400)
committerCasey Bodley <cbodley@redhat.com>
Wed, 2 May 2018 20:11:31 +0000 (16:11 -0400)
Fixes: http://tracker.ceph.com/issues/23974
Signed-off-by: Casey Bodley <cbodley@redhat.com>
src/rgw/rgw_coroutine.cc

index 47e2d0630b84f3c9c70787910c545759236bf382..fecfbb4c679cda4c0dbd2c5bf3a01ae99c9087f4 100644 (file)
@@ -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;