Skip to content

Commit

Permalink
rgw: update outdated debug func name
Browse files Browse the repository at this point in the history
Signed-off-by: Jiaying Ren <jiaying.ren@umcloud.com>
  • Loading branch information
Jiaying Ren committed Sep 4, 2017
1 parent c93c20f commit dfa852e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rgw/rgw_rados.cc
Expand Up @@ -10645,13 +10645,13 @@ int RGWRados::Object::Read::iterate(int64_t ofs, int64_t end, RGWGetDataCB *cb)
while (!done) {
r = data->wait_next_io(&done);
if (r < 0) {
dout(10) << "get_obj_iterate() r=" << r << ", canceling all io" << dendl;
dout(10) << __func__ << " r=" << r << ", cancelling all io" << std::dendl;
data->cancel_all_io();
break;
}
r = store->flush_read_list(data);
if (r < 0) {
dout(10) << "get_obj_iterate() r=" << r << ", canceling all io" << dendl;
dout(10) << __func__ << " r=" << r << ", cancelling all io" << std::dendl;
data->cancel_all_io();
break;
}
Expand Down

0 comments on commit dfa852e

Please sign in to comment.