Skip to content

Commit

Permalink
Fix KafkaListenerEndpoint#getEndpointDescription
Browse files Browse the repository at this point in the history
Add a missing left quote in `AbstractKafkaListenerEndpoint.getEndpointDescription()` for `topics`
  • Loading branch information
NathanQingyangXu authored Nov 6, 2023
1 parent b9edbfd commit 5f1b1a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ private void setupMessageListener(MessageListenerContainer container,
protected StringBuilder getEndpointDescription() {
StringBuilder result = new StringBuilder();
return result.append(getClass().getSimpleName()).append("[").append(this.id).
append("] topics=").append(this.topics).
append("] topics='").append(this.topics).
append("' | topicPartitions='").append(this.topicPartitions).
append("' | topicPattern='").append(this.topicPattern).append("'");
}
Expand Down

0 comments on commit 5f1b1a5

Please # to comment.