mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-28 01:32:57 +01:00
comment
This commit is contained in:
parent
91709bc17f
commit
7910c7b511
@ -53,7 +53,8 @@ impl Actor for RedisActor {
|
|||||||
.map_err(|err, act, ctx| {
|
.map_err(|err, act, ctx| {
|
||||||
error!("Can not connect to redis server: {}", err);
|
error!("Can not connect to redis server: {}", err);
|
||||||
debug!("{:?}", err);
|
debug!("{:?}", err);
|
||||||
// re-connect with backoff time
|
// re-connect with backoff time.
|
||||||
|
// we stop currect context, supervisor will restart it.
|
||||||
if let Some(timeout) = act.backoff.next_backoff() {
|
if let Some(timeout) = act.backoff.next_backoff() {
|
||||||
ctx.run_later(timeout, |_, ctx| ctx.stop());
|
ctx.run_later(timeout, |_, ctx| ctx.stop());
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user