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 2af8103 commit 37ee256Copy full SHA for 37ee256
src/io/vss_store.rs
@@ -99,9 +99,9 @@ impl VssStore {
99
derive_data_encryption_and_obfuscation_keys(&vss_seed);
100
let key_obfuscator = KeyObfuscator::new(obfuscation_master_key);
101
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))
+ .with_max_attempts(100)
+ .with_max_total_delay(Duration::from_secs(180))
+ .with_max_jitter(Duration::from_millis(100))
105
.skip_retry_on_error(Box::new(|e: &VssError| {
106
matches!(
107
e,
0 commit comments