- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.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
Check admin endpoint instead of metrics for Pulsar WaitStrategy. #5514
Check admin endpoint instead of metrics for Pulsar WaitStrategy. #5514
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.
Besides the suggestion, my little concern is related to METRIC_ENDPOINT
(which I am not expecting to be used) can break someone else code. I would rather deprecate it for now.
Would like to hear from @kiview @bsideup regarding to this.
In case, we agree to drop it. The following is needed in the build.gradle
file in the pulsar
module
tasks.japicmp {
fieldExcludes = [
"org.testcontainers.containers.PulsarContainer#METRICS_ENDPOINT"
]
}
modules/pulsar/src/main/java/org/testcontainers/containers/PulsarContainer.java
Outdated
Show resolved
Hide resolved
…sarContainer.java Co-authored-by: Eddú Meléndez Gonzales <eddu.melendez@gmail.com>
2da64cf
to
85adce5
Compare
I agree with @eddumelendez's argument and that's how we generally approach changes to the public API. So although unlikely that users depend on it, let's deprecate |
modules/pulsar/src/main/java/org/testcontainers/containers/PulsarContainer.java
Show resolved
Hide resolved
modules/pulsar/src/main/java/org/testcontainers/containers/PulsarContainer.java
Outdated
Show resolved
Hide resolved
…sarContainer.java Co-authored-by: Kevin Wittek <kiview@users.noreply.github.com>
@nahguam thanks for your contribution! this is now in master |
Fixes #5513