Commit 579bb3ba authored by Dominik Charousset's avatar Dominik Charousset

Fix slots in drop messages

parent 1056e215
...@@ -132,7 +132,8 @@ bool inbound_path::up_to_date() { ...@@ -132,7 +132,8 @@ bool inbound_path::up_to_date() {
void inbound_path::emit_regular_shutdown(local_actor* self) { void inbound_path::emit_regular_shutdown(local_actor* self) {
CAF_LOG_TRACE(CAF_ARG(slots)); CAF_LOG_TRACE(CAF_ARG(slots));
unsafe_send_as(self, hdl, make<upstream_msg::drop>(slots, self->address())); unsafe_send_as(self, hdl,
make<upstream_msg::drop>(slots.invert(), self->address()));
} }
void inbound_path::emit_irregular_shutdown(local_actor* self, error reason) { void inbound_path::emit_irregular_shutdown(local_actor* self, error reason) {
......
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