Skip to content

Commit

Permalink
rx3 postfix
Browse files Browse the repository at this point in the history
  • Loading branch information
skarpenko authored and kptfh committed Sep 4, 2024
1 parent 6a80103 commit 016ef9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion feign-reactor-rx3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.playtika.reactivefeign</groupId>
<artifactId>feign-reactor-parent</artifactId>
<relativePath>../feign-reactor-parent</relativePath>
<version>4.0.3</version>
<version>4.1.2</version>
</parent>

<artifactId>feign-reactor-rx3</artifactId>
Expand Down
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 016ef9d

Please sign in to comment.