-
Notifications
You must be signed in to change notification settings - Fork 57
Full static membership support #168
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,9 @@ defmodule BroadwayKafka.MixProject do | |
| defp deps do | ||
| [ | ||
| {:broadway, "~> 1.0"}, | ||
| {:brod, "~> 3.16 or ~> 4.0"}, | ||
| # We need our brod fork until https://github.com/kafka4beam/brod/pull/669 | ||
| # (fenced static member support) is merged and released upstream. | ||
| {:brod, github: "knocklabs/brod", ref: "d16aa8cea37ad9aa8e8591aba0eb2ef814c93e6b"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if I remember correctly, adding this mean we can't publish this package to Hex until this git reference is removed. I suggest for this PR to be on hold until the PR is merged back to the main stream
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not meant to be merged as is yes, needs to wait for that PR to be merged. Sorry, my bad for not calling that out! |
||
| {:nimble_options, "~> 0.3 or ~> 1.0"}, | ||
| {:telemetry, "~> 0.4.3 or ~> 1.0"}, | ||
| {:ex_doc, ">= 0.19.0", only: :docs} | ||
|
|
||
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.
what kind of testing you had in mind? is this still needed for testing?