Skip to content

Commit 37ee256

Browse files
committed
Bump retries and timeouts considerably
1 parent 2af8103 commit 37ee256

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

0 commit comments

Comments
 (0)