-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds Pattern support to Kafka Streams Topology Dev UI #36871
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I added a small question.
Probably something for @ozangunalp and @phillip-kruger to review.
for (int i = 0; i < subGraphs.size(); i++) { | ||
res.add(" subgraph cluster" + i + " {"); | ||
res.add(" label=\"Sub-Topology: " + i + "\"; color=\"#C8C879\"; bgcolor=\"#FFFFDE\";"); | ||
res.add(" }"); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you remove this section?
It was a forgotten trace of the initial loop, obsolete and useless after it was rewritten as a stream (previous lines in source code). This part is fully covered by the unit test and result didn't change after this code cleaning.
|
This comment has been minimized.
This comment has been minimized.
✔️ The latest workflow run for the pull request has completed successfully. It should be safe to merge provided you have a look at the other checks in the summary. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. @ozangunalp please also have a look
Merging. @ozangunalp please let us know if there is any concerns (and we can roll forward) |
Proposed fix for #29411