|
@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() |
Answered by
sugmanue
Jun 12, 2024
Replies: 2 comments 1 reply
|
Hi @henricook, the equivalent to Let us know if you have any other questions or concerns. |
1 reply
Answer selected by
sugmanue
|
Hello! Reopening this discussion to make it searchable. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.