Read object lists from peers and own blockstore

This commit is contained in:
Vitaliy Filippov
2020-01-22 02:36:14 +03:00
parent 8c05ee252c
commit a8bc44064d
6 changed files with 125 additions and 44 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ void osd_t::handle_read(ring_data_t *data, int peer_fd)
cl.sent_ops.erase(req_it);
cl.read_reply_id = 0;
cl.read_state = 0;
handle_reply(request);
request->callback(request);
}
}
}
@@ -168,6 +168,6 @@ void osd_t::handle_read_reply(osd_client_t *cl)
{
cl->read_state = 0;
cl->sent_ops.erase(req_it);
handle_reply(request);
request->callback(request);
}
}