-
Notifications
You must be signed in to change notification settings - Fork 102
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
Add deleteConsumerGroups method #730
Conversation
Failing due to mima, not sure how best to make this change in a way that doesn't trigger it? |
You need to add an exclusion rule for a new method in the build.sbt Overall I'm +1 |
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.
You can find the exclusion rule in the build logs and it needs to be added to mimaBinaryIssuesFilter
.
/** | ||
* Delete consumer groups from the cluster. | ||
*/ | ||
def deleteConsumerGroups(groupIds: List[String]): F[Unit] |
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.
Could we change this to:
def deleteConsumerGroups[G[_]](groupIds: G[String])(
implicit G: Foldable[G]
): F[Unit]
to match the other functions?
No description provided.