We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OS: windows + docker Python version: (e.g., Python 3.11) Package version: opentelemetry-instrumentation-aiokafka~=0.52b0 aiokafka~=0.12.0
Exception: AIOKafkaProducer.send() got multiple values for argument 'headers'
Using opentelemetry-instrumentation-aiokafka~=0.52b0, from opentelemetry.instrumentation.aiokafka import AIOKafkaInstrumentor
AIOKafkaInstrumentor().instrument()
and await producer.send_and_wait(RESULTS_TOPIC, key=correlation_id, value=result_event.encode('utf-8'),)
Send event
No response
None
The text was updated successfully, but these errors were encountered:
#3332 I am trying to fix this bug and waiting for merge. Perhaps someone can improve the PR
@elghali headers=[] can skip this bug
await producer.send_and_wait(RESULTS_TOPIC, key=correlation_id, value=result_event.encode('utf-8'),headers=[])
Sorry, something went wrong.
@fcfangcc thank you for the tip, however does this affect the traces collecting?
It won't affect the traces collecting. This usage is just to avoid triggering a logical bug in the instrumentation.
No branches or pull requests
Describe your environment
OS: windows + docker
Python version: (e.g., Python 3.11)
Package version: opentelemetry-instrumentation-aiokafka~=0.52b0
aiokafka~=0.12.0
What happened?
Exception:
AIOKafkaProducer.send() got multiple values for argument 'headers'
Steps to Reproduce
Using opentelemetry-instrumentation-aiokafka~=0.52b0,
from opentelemetry.instrumentation.aiokafka import AIOKafkaInstrumentor
Instrument kafka
AIOKafkaInstrumentor().instrument()
and
await producer.send_and_wait(RESULTS_TOPIC, key=correlation_id, value=result_event.encode('utf-8'),)
Expected Result
Send event
Actual Result
Exception:
AIOKafkaProducer.send() got multiple values for argument 'headers'
Additional context
No response
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: