We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ConflictError
1 parent 4aacc1f commit 5805799Copy full SHA for 5805799
1 file changed
src/io/vss_store.rs
@@ -791,12 +791,7 @@ fn retry_policy() -> CustomRetryPolicy {
791
.with_max_total_delay(Duration::from_secs(180))
792
.with_max_jitter(Duration::from_millis(100))
793
.skip_retry_on_error(Box::new(|e: &VssError| {
794
- matches!(
795
- e,
796
- VssError::NoSuchKeyError(..)
797
- | VssError::InvalidRequestError(..)
798
- | VssError::ConflictError(..)
799
- )
+ matches!(e, VssError::NoSuchKeyError(..) | VssError::InvalidRequestError(..))
800
}) as _)
801
}
802
0 commit comments