Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
thachlp committed Dec 31, 2024
1 parent ed56fa4 commit 83a470e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ private static class ClusterTopologyRefreshTask extends AtomicBoolean implements
private static final long serialVersionUID = -1337731371220365694L;

private final Supplier<CompletionStage<?>> reloadTopologyAsync;

private final CompletableFuture<Void> completionFuture = new CompletableFuture<>();

ClusterTopologyRefreshTask(Supplier<CompletionStage<?>> reloadTopologyAsync) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ public CompletableFuture<Void> shutdownAsync(long quietPeriod, long timeout, Tim
.exceptionally(ex -> {
System.err.println("Error during topology refresh or shutdown: " + ex.getMessage());
return null;
});
});
}

// -------------------------------------------------------------------------
Expand Down

0 comments on commit 83a470e

Please sign in to comment.