Downgrade 'No next leader found' to warning

This commit is contained in:
Greg Fitzgerald 2019-03-21 09:34:39 -06:00
parent fb44e2bf48
commit 07d55d0092
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ impl ReplayStage {
} }
}) })
.or_else(|| { .or_else(|| {
error!("{} No next leader found", my_id); warn!("{} No next leader found", my_id);
None None
}); });
} }