mirror of
https://github.com/ceph/ceph
synced 2025-03-11 02:39:05 +00:00
Merge pull request #28902 from tchaikov/wip-fix-crimson-test-build
test/crimson: fix FTBFS Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com> Reviewed-by: Sage Weil <sage@redhat.com>
This commit is contained in:
commit
73746f3807
@ -49,7 +49,7 @@ struct Server {
|
|||||||
return m->get_type() == CEPH_MSG_PING;
|
return m->get_type() == CEPH_MSG_PING;
|
||||||
}
|
}
|
||||||
void ms_fast_dispatch(Message* m) override {
|
void ms_fast_dispatch(Message* m) override {
|
||||||
m->get_connection()->send_message(make_message<MPing>());
|
m->get_connection()->send_message(new MPing);
|
||||||
m->put();
|
m->put();
|
||||||
{
|
{
|
||||||
std::lock_guard lock{mutex};
|
std::lock_guard lock{mutex};
|
||||||
@ -132,7 +132,7 @@ struct Client {
|
|||||||
auto conn = msgr->connect_to(peer.name.type(),
|
auto conn = msgr->connect_to(peer.name.type(),
|
||||||
entity_addrvec_t{peer.addr});
|
entity_addrvec_t{peer.addr});
|
||||||
replied = false;
|
replied = false;
|
||||||
conn->send_message(make_message<MPing>());
|
conn->send_message(new MPing);
|
||||||
std::unique_lock lock{mutex};
|
std::unique_lock lock{mutex};
|
||||||
return on_reply.wait_for(lock, 500ms, [&] {
|
return on_reply.wait_for(lock, 500ms, [&] {
|
||||||
return replied;
|
return replied;
|
||||||
|
Loading…
Reference in New Issue
Block a user