Skip to content

Commit

Permalink
rx3 postfix
Browse files Browse the repository at this point in the history
  • Loading branch information
skarpenko committed Sep 4, 2024
1 parent 6a80103 commit 17644c0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
import java.nio.charset.Charset;
import java.util.Collections;

import static com.github.tomakehurst.wiremock.client.WireMock.*;
import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
import static reactivefeign.rx3.client.statushandler.Rx3StatusHandlers.throwOnStatus;
import static reactivefeign.utils.FeignUtils.httpMethod;
Expand Down Expand Up @@ -65,7 +68,7 @@ public void shouldThrowRetryException() throws InterruptedException {
return new RetryableException(
response.status(),
"Should retry on next node",
httpMethod, null, request);
httpMethod, (Long)null, request);
}))
.target(IcecreamServiceApi.class, "http://localhost:" + wireMockRule.port());

Expand Down

0 comments on commit 17644c0

Please sign in to comment.