File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,10 @@ impl VssStore {
6262 let key_obfuscator = KeyObfuscator :: new ( obfuscation_master_key) ;
6363 let storable_builder = StorableBuilder :: new ( data_encryption_key, RandEntropySource ) ;
6464 let retry_policy = ExponentialBackoffRetryPolicy :: new ( Duration :: from_millis ( 10 ) )
65- . with_max_attempts ( 10 )
66- . with_max_total_delay ( Duration :: from_secs ( 15 ) )
65+ //.with_max_attempts(10)
66+ . with_max_attempts ( 15 ) // Alby: account for unexpected networking errors
67+ //.with_max_total_delay(Duration::from_secs(15))
68+ . with_max_total_delay ( Duration :: from_secs ( 180 ) ) // Alby: account for unexpected networking errors
6769 . with_max_jitter ( Duration :: from_millis ( 10 ) )
6870 . skip_retry_on_error ( Box :: new ( |e : & VssError | {
6971 matches ! (
You can’t perform that action at this time.
0 commit comments