Fix OTLP gRPC header keys to lowercase and bump version to v0.0.20
All checks were successful
Build And Test / build-and-push (push) Successful in 3m9s
All checks were successful
Build And Test / build-and-push (push) Successful in 3m9s
gRPC metadata keys must be lowercase. Changed X-Scope-OrgID and X-Service to x-scope-orgid and x-service to fix "Illegal header key" error. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@ -40,8 +40,8 @@ if not settings.DEBUG:
|
||||
endpoint=settings.TRACE_ENDPOINT,
|
||||
insecure=True,
|
||||
headers={
|
||||
"X-Scope-OrgID": settings.SERVICE_PLATFORM,
|
||||
"X-Service": settings.TRACE_SERVICE_NAME
|
||||
"x-scope-orgid": settings.SERVICE_PLATFORM,
|
||||
"x-service": settings.TRACE_SERVICE_NAME
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user