Skip to content

Commit 4dc532f

Browse files
David O'Sullivananthonydahanne
authored andcommitted
bump supported API
1 parent b7db6c2 commit 4dc532f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/CloudFoundryClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public interface CloudFoundryClient {
8181
/**
8282
* The currently supported Cloud Controller API version
8383
*/
84-
String SUPPORTED_API_VERSION = "2.243.0";
84+
String SUPPORTED_API_VERSION = "2.245.0";
8585

8686
/**
8787
* Main entry point to the Cloud Foundry Application Usage Events Client API

integration-test/src/test/java/org/cloudfoundry/routing/v1/TcpRoutesTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ public void delete() {
123123
.filter(route -> backendIp.equals(route.getBackendIp()))
124124
.filter(route -> backendPort.equals(route.getBackendPort()))
125125
.filter(route -> port.equals(route.getPort()))
126-
.flatMap(e -> !"".equals(e.getBackendIp()) ? Flux.error(new RuntimeException("route still found")) : Flux.just(e)
126+
.flatMap(e -> !"".equals(e.getBackendIp()) ?
127+
Flux.error(new RuntimeException("route still found")) :
128+
Flux.just(e)
127129
)
128130
.retryWhen(Retry.indefinitely().filter(e -> "route still found".equals(e.getMessage())))
129131
)

0 commit comments

Comments
 (0)