do not kill listener threads on error
This commit is contained in:
parent
7a7b75a698
commit
a16369085c
@ -88,7 +88,7 @@ impl Events {
|
|||||||
},
|
},
|
||||||
|
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
return Err(format_err!("events error err={:?}", e));
|
warn!("events error err={:?}", e);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -57,7 +57,7 @@ impl Warden {
|
|||||||
},
|
},
|
||||||
|
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
return Err(format_err!("err={:?}", e));
|
warn!("err={:?}", e);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user