-
-
Notifications
You must be signed in to change notification settings - Fork 291
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
feat: Add pulsar module #1138
feat: Add pulsar module #1138
Conversation
✅ Deploy Preview for testcontainers-dotnet ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
I believe this pull request is a duplicate. I’ve already submitted a pull request that adds Pulsar support. You can find it here: PR #1103. |
var content = await response.Content.ReadAsStringAsync() | ||
.ConfigureAwait(false); | ||
|
||
return "[\"standalone\"]".Equals(content, StringComparison.OrdinalIgnoreCase); |
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.
if PULSAR_PREFIX_clusterName
env var is set then the wait strategy will fail. It should check the env var's value first.
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.
As @entvex mentioned, there is already an open PR. We should focus on one implementation.
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 for the PR, but as mentioned, someone else already submitted an Apache Pulsar module. I will close this PR since we merged #1103.
What does this PR do?
Add support for starting Apache Pulsar containers.
Why is it important?
This is required to write tests that target Apache Pulsar.
How to test this PR