From 5314d4a31977763bd7a3c7f0bf9c0ebcb0512a14 Mon Sep 17 00:00:00 2001 From: Leighton Chen Date: Wed, 27 Dec 2023 13:17:52 -0800 Subject: [PATCH 1/2] Update integrations.py --- opencensus/trace/integrations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opencensus/trace/integrations.py b/opencensus/trace/integrations.py index 7a58f4911..59934881d 100644 --- a/opencensus/trace/integrations.py +++ b/opencensus/trace/integrations.py @@ -32,8 +32,8 @@ class _Integrations: PYRAMID = 512 REQUESTS = 1024 SQLALCHEMY = 2056 - HTTPX = 4096 - FASTAPI = 8192 + HTTPX = 16777216 + FASTAPI = 4194304 def get_integrations(): From 17187ce68d0da781beee42cfd670b0208ba80c41 Mon Sep 17 00:00:00 2001 From: Leighton Chen Date: Wed, 27 Dec 2023 13:42:47 -0800 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4465b6142..d614b5618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +- Changed bit-mapping for `httpx` and `fastapi` integrations +([#1239](https://github.com/census-instrumentation/opencensus-python/pull/1239)) + # 0.11.3 Released 2023-09-18