From 18901938c7ee0a1f8597247a019336169a237c3e Mon Sep 17 00:00:00 2001 From: icurfer Date: Wed, 14 Jan 2026 17:29:43 +0900 Subject: [PATCH] Fix OTLP gRPC header keys to lowercase and bump version to v0.0.20 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 --- auth_prj/wsgi.py | 4 ++-- version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/auth_prj/wsgi.py b/auth_prj/wsgi.py index 3c58cf1..b216de1 100644 --- a/auth_prj/wsgi.py +++ b/auth_prj/wsgi.py @@ -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 } ) diff --git a/version b/version index 4c36eb1..3ff45f3 100644 --- a/version +++ b/version @@ -1 +1 @@ -v0.0.19 \ No newline at end of file +v0.0.20 \ No newline at end of file