File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,14 +61,7 @@ impl VssStore {
6161 derive_data_encryption_and_obfuscation_keys ( & vss_seed) ;
6262 let key_obfuscator = KeyObfuscator :: new ( obfuscation_master_key) ;
6363 let storable_builder = StorableBuilder :: new ( data_encryption_key, RandEntropySource ) ;
64- let retry_policy: FilteredRetryPolicy <
65- JitteredRetryPolicy <
66- MaxTotalDelayRetryPolicy <
67- MaxAttemptsRetryPolicy < ExponentialBackoffRetryPolicy < VssError > > ,
68- > ,
69- > ,
70- Box < dyn Fn ( & VssError ) -> bool + Send + Sync + ' static > ,
71- > = ExponentialBackoffRetryPolicy :: new ( Duration :: from_millis ( 10 ) )
64+ let retry_policy = ExponentialBackoffRetryPolicy :: new ( Duration :: from_millis ( 10 ) )
7265 //.with_max_attempts(10)
7366 . with_max_attempts ( 15 ) // Alby: account for unexpected networking errors
7467 //.with_max_total_delay(Duration::from_secs(15))
You can’t perform that action at this time.
0 commit comments