-
Notifications
You must be signed in to change notification settings - Fork 141
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
Fix Consumer.fromJavaConsumer
and Producer.fromJavaProducer
type signatures
#1033
Fix Consumer.fromJavaConsumer
and Producer.fromJavaProducer
type signatures
#1033
Conversation
…mer that rely on interface instead of implementation
@devsprint What's the diff with the functions just above yours? 🤔 |
Just rely on the interface instead of implementation |
Not sure that is the best approach. maybe we can have a single method that use the interface as parameter instead of the implementation. |
Can you instead fix the previous functions? It's not good to rely on the implementation. The interfaces should have been used |
yes. I will update the branch in few minutes. |
(BTW, I'm fixing the CI here: #1032. I'll merge my PR as soon as the CI passes) |
@devsprint I fixed the CI in the |
…mer that rely on interface instead of implementation
…rint/zio-kafka into enable-kafka-telemetry-integration
Consumer.fromJavaConsumer
and Producer.fromJavaProducer
type signatures
Thanks @devsprint! |
Found the issue while trying to wrap the kafka Consumer and Producer with KafkaTelemetry to integrat Open Telemetry for tracing.
Added a pair of convenient methods.