-
Notifications
You must be signed in to change notification settings - Fork 509
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
Python grpc.aio metadata is transformed to list #2509
Labels
Comments
Thank you for reporting this @kindermax! We'll take a look. |
fdellekart
added a commit
to fdellekart/sentry-python
that referenced
this issue
Jun 26, 2024
… client interceptor Fixes getsentry#2509
fdellekart
added a commit
to fdellekart/sentry-python
that referenced
this issue
Jun 26, 2024
… client interceptor Fixes getsentry#2509
fdellekart
added a commit
to fdellekart/sentry-python
that referenced
this issue
Jul 3, 2024
… client interceptor Fixes getsentry#2509
antonpirker
added
the
Triaged
Has been looked at recently during old issue triage
label
Jul 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do you use Sentry?
Sentry Saas (sentry.io)
Version
1.35.0
Steps to Reproduce
Hi, in latest sentry-sdk release a new Client interceptor was added for
grpc.aio
client. The problems is thatmetadata
is transformed into a list and it breaks all subsequent interceptors which expectmetadata
to begrpc.aio.Metadata
object (https://github.com/grpc/grpc/blob/master/src/python/grpcio/grpc/aio/_interceptor.py#L93C14-L93C14)Expected Result
Maybe metadata needs to be preserved as type
grpc.aio.Metadata
Actual Result
For now i see error that metadata is a list
The text was updated successfully, but these errors were encountered: