Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,9 @@ public void consumerRebalanceListenerCallbackCompleted(ConsumerRebalanceListener
if (error.isPresent()) {
Exception e = error.get();
log.warn(
"The {} method completed with an error ({}); signaling to continue to the next phase of rebalance",
methodName.fullyQualifiedMethodName(),
e.getMessage()
"The {} method failed during rebalance; proceeding to the next phase",
methodName.fullyQualifiedMethodName(),
e
);

future.completeExceptionally(e);
Expand Down