Unverified Commit 442e8336 authored by Joseph Noir's avatar Joseph Noir Committed by GitHub

Merge pull request #48

Fix ordering of deserializing worker
parents f69e5759 d12524ed
...@@ -74,7 +74,7 @@ public: ...@@ -74,7 +74,7 @@ public:
auto ptr = make_mailbox_element(std::move(src_hdl), auto ptr = make_mailbox_element(std::move(src_hdl),
make_message_id(hdr.operation_data), make_message_id(hdr.operation_data),
std::move(fwd_stack), std::move(content)); std::move(fwd_stack), std::move(content));
dst_hdl->get()->enqueue(std::move(ptr), nullptr); dref.queue_->push(ctx, dref.msg_id_, std::move(dst_hdl), std::move(ptr));
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment