do not kill listener threads on error

This commit is contained in:
ntr 2019-09-04 15:23:35 +10:00
parent 7a7b75a698
commit a16369085c
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ impl Events {
}, },
Err(e) => { Err(e) => {
return Err(format_err!("events error err={:?}", e)); warn!("events error err={:?}", e);
}, },
}; };
} }

View File

@ -57,7 +57,7 @@ impl Warden {
}, },
Err(e) => { Err(e) => {
return Err(format_err!("err={:?}", e)); warn!("err={:?}", e);
}, },
}; };
} }