We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63977a commit 7b51a75Copy full SHA for 7b51a75
src/io/vss_store.rs
@@ -297,9 +297,9 @@ impl VssStoreInner {
297
derive_data_encryption_and_obfuscation_keys(&vss_seed);
298
let key_obfuscator = KeyObfuscator::new(obfuscation_master_key);
299
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))
+ .with_max_attempts(100)
+ .with_max_total_delay(Duration::from_secs(60))
+ .with_max_jitter(Duration::from_millis(50))
303
.skip_retry_on_error(Box::new(|e: &VssError| {
304
matches!(
305
e,
0 commit comments