Commit c37aed83 authored by Matthias Vallentin's avatar Matthias Vallentin

Always send EXIT messages with high priority.

System messages have high priority. This commit adds a missing priority
indicator to send_exit in local_actor.
parent fd6e1812
......@@ -132,7 +132,8 @@ void local_actor::send_impl(message_priority prio, abstract_channel* dest,
}
void local_actor::send_exit(const actor_addr& whom, uint32_t reason) {
send(actor_cast<actor>(whom), exit_msg{address(), reason});
send(message_priority::high, actor_cast<actor>(whom),
exit_msg{address(), reason});
}
void local_actor::delayed_send_impl(message_priority prio, const channel& dest,
......
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