Unverified Commit 6cfab385 authored by Fedor Sakharov's avatar Fedor Sakharov Committed by GitHub
Browse files

Exit from av-store loop on fatal error. (#2232)

* Fuse receive stream in Context

* Revert "Fuse receive stream in Context"

This reverts commit ddd26fa9.

* Exit on node shutdown from av-store loop

* Filter only context error
parent 05b91fb4
Pipeline #119295 passed with stages
in 30 minutes and 1 second
......@@ -507,6 +507,10 @@ where
match res {
Err(e) => {
e.trace();
if let Error::Subsystem(SubsystemError::Context(_)) = e {
break;
}
}
Ok(true) => {
tracing::info!(target: LOG_TARGET, "received `Conclude` signal, exiting");
......
Supports Markdown
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