Skip to content

Commit 7b51a75

Browse files
committed
Bump retries and timeouts considerably
1 parent b63977a commit 7b51a75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/io/vss_store.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ impl VssStoreInner {
297297
derive_data_encryption_and_obfuscation_keys(&vss_seed);
298298
let key_obfuscator = KeyObfuscator::new(obfuscation_master_key);
299299
let retry_policy = ExponentialBackoffRetryPolicy::new(Duration::from_millis(10))
300-
.with_max_attempts(10)
301-
.with_max_total_delay(Duration::from_secs(15))
302-
.with_max_jitter(Duration::from_millis(10))
300+
.with_max_attempts(100)
301+
.with_max_total_delay(Duration::from_secs(60))
302+
.with_max_jitter(Duration::from_millis(50))
303303
.skip_retry_on_error(Box::new(|e: &VssError| {
304304
matches!(
305305
e,

0 commit comments

Comments
 (0)