REST backend: longer maximum retry time

This commit is contained in:
Alexander Weiss 2022-08-13 10:49:59 +02:00
parent b51297b7dc
commit 12a5d07899

View File

@ -53,7 +53,7 @@ impl RestBackend {
client: Client::new(),
backoff: MaybeBackoff(Some(
ExponentialBackoffBuilder::new()
.with_max_elapsed_time(Some(Duration::from_secs(120)))
.with_max_elapsed_time(Some(Duration::from_secs(600)))
.build(),
)),
}