-
@sugmanue in case you have the time to help 🙏🏻 I'm just upgraded to 2.26.0 and I had a
val retryStrategy: StandardRetryStrategy = StandardRetryStrategy
.builder()
.maxAttempts(1)
.backoffStrategy(BackoffStrategy.retryImmediately())
.build()
private val clientConfiguration: ClientOverrideConfiguration =
ClientOverrideConfiguration
.builder()
.retryStrategy(retryStrategy)
.build() |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @henricook, the equivalent to Let us know if you have any other questions or concerns. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hi @henricook, the equivalent to
RetryPolicy.none()
isDefaultRetryStrategy.doNotRetry()
see here, which is similar to what you have there. Notice also that usingRetryPolicy.none()
is, and will be for the foreseeable future, still supported.Let us know if you have any other questions or concerns.