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.
ConflictError
1 parent b4b2843 commit b9f91e2Copy full SHA for b9f91e2
src/io/vss_store.rs
@@ -686,12 +686,7 @@ fn retry_policy() -> CustomRetryPolicy {
686
.with_max_total_delay(Duration::from_secs(180))
687
.with_max_jitter(Duration::from_millis(100))
688
.skip_retry_on_error(Box::new(|e: &VssError| {
689
- matches!(
690
- e,
691
- VssError::NoSuchKeyError(..)
692
- | VssError::InvalidRequestError(..)
693
- | VssError::ConflictError(..)
694
- )
+ matches!(e, VssError::NoSuchKeyError(..) | VssError::InvalidRequestError(..))
695
}) as _)
696
}
697
0 commit comments