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 53532d0 commit 2e7d710Copy full SHA for 2e7d710
src/io/vss_store.rs
@@ -98,9 +98,9 @@ impl VssStore {
98
derive_data_encryption_and_obfuscation_keys(&vss_seed);
99
let key_obfuscator = KeyObfuscator::new(obfuscation_master_key);
100
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))
+ .with_max_attempts(100)
+ .with_max_total_delay(Duration::from_secs(60))
+ .with_max_jitter(Duration::from_millis(50))
104
.skip_retry_on_error(Box::new(|e: &VssError| {
105
matches!(
106
e,
0 commit comments