Skip to content

Commit 2e7d710

Browse files
committed
Bump retries and timeouts considerably
1 parent 53532d0 commit 2e7d710

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
@@ -98,9 +98,9 @@ impl VssStore {
9898
derive_data_encryption_and_obfuscation_keys(&vss_seed);
9999
let key_obfuscator = KeyObfuscator::new(obfuscation_master_key);
100100
let retry_policy = ExponentialBackoffRetryPolicy::new(Duration::from_millis(10))
101-
.with_max_attempts(10)
102-
.with_max_total_delay(Duration::from_secs(15))
103-
.with_max_jitter(Duration::from_millis(10))
101+
.with_max_attempts(100)
102+
.with_max_total_delay(Duration::from_secs(60))
103+
.with_max_jitter(Duration::from_millis(50))
104104
.skip_retry_on_error(Box::new(|e: &VssError| {
105105
matches!(
106106
e,

0 commit comments

Comments
 (0)