Commit cd29a122 authored by Dominik Charousset's avatar Dominik Charousset

Always consider actors with open streams as alive

parent 9708dba6
......@@ -709,7 +709,7 @@ public:
bool alive() const noexcept {
return !bhvr_stack_.empty() || !awaited_responses_.empty()
|| !multiplexed_responses_.empty() || !watched_disposables_.empty()
|| !stream_sources_.empty();
|| !stream_sources_.empty() || !stream_bridges_.empty();
}
/// Runs all pending actions.
......
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