fix: service listener backoff policy

Remove the `max_elapsed_time` limit
This commit is contained in:
Yujia Qiao 2021-12-18 16:42:08 +08:00
parent f92398ea31
commit b6c353e7bf
No known key found for this signature in database
GPG Key ID: DC129173B148701B
1 changed files with 1 additions and 0 deletions

View File

@ -321,6 +321,7 @@ impl<T: Transport> ControlChannel<T> {
let mut backoff = ExponentialBackoff {
max_interval: Duration::from_secs(1),
max_elapsed_time: None,
..Default::default()
};
loop {