We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd92956 commit cf1faf4Copy full SHA for cf1faf4
1 file changed
src/io/vss_store.rs
@@ -103,9 +103,9 @@ impl VssStore {
103
derive_data_encryption_and_obfuscation_keys(&vss_seed);
104
let key_obfuscator = KeyObfuscator::new(obfuscation_master_key);
105
let retry_policy = ExponentialBackoffRetryPolicy::new(Duration::from_millis(10))
106
- .with_max_attempts(10)
107
- .with_max_total_delay(Duration::from_secs(15))
108
- .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))
109
.skip_retry_on_error(Box::new(|e: &VssError| {
110
matches!(
111
e,
0 commit comments