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

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:
2026-01-14 17:29:43 +09:00
parent e318855b14
commit 18901938c7
2 changed files with 3 additions and 3 deletions

View File

@ -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
}
)