Skip to content

Commit

Permalink
Experiment
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Jan 23, 2024
1 parent 0bdb86f commit 576c5cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ public void completeRequest(Response response) {
} else {
// TODO: log an error.
// probably a response was received after shutdown or `registerRequest` call was missing
System.err.printf("Received a response for not registered callback id %d: %s%n", callbackId, response);
System.err.printf(
"Received a response for not registered callback id %d: %s%n", callbackId, response);
}
}

Expand Down
4 changes: 2 additions & 2 deletions java/integTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ tasks.register('check2', Exec) {

test.dependsOn 'stopAllBeforeTests'
stopAllBeforeTests.finalizedBy 'clearDirs'
// test.dependsOn 'startCluster'
test.dependsOn 'startStandalone'
clearDirs.dependsOn 'startStandalone'
// clearDirs.dependsOn 'startCluster'
startStandalone.finalizedBy 'check1'
startStandalone.finalizedBy 'check2'
test.finalizedBy 'stopAllAfterTests'
Expand Down

0 comments on commit 576c5cb

Please sign in to comment.