Skip to content

Commit

Permalink
chore(deps): update to fabric8 client 5.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
metacosm committed Jan 6, 2022
1 parent f7aceb4 commit c1c1b05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<maven.compiler.target>${java.version}</maven.compiler.target>

<junit.version>5.8.1</junit.version>
<fabric8-client.version>5.10.1</fabric8-client.version>
<fabric8-client.version>5.11.2</fabric8-client.version>
<slf4j.version>1.7.32</slf4j.version>
<log4j.version>2.15.0</log4j.version>
<mokito.version>4.1.0</mokito.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,13 @@ public SimpleListener(CompletableFuture<String> data, ByteArrayOutputStream baos
}

@Override
public void onOpen(Response response) {
log.debug("Reading data... " + response.message());
public void onOpen() {
log.debug("Reading data... ");
}

@Override
public void onFailure(Throwable t, Response response) {
log.debug(t.getMessage() + " " + response.message());
log.debug(t.getMessage());
data.completeExceptionally(t);
}

Expand Down

0 comments on commit c1c1b05

Please sign in to comment.