From d96fb343943e7734c7f7bb43cb7312e937d89187 Mon Sep 17 00:00:00 2001 From: Leighton Chen Date: Wed, 27 Dec 2023 13:52:38 -0800 Subject: [PATCH] Update httpx and fastapi bitmap (#1239) --- CHANGELOG.md | 3 +++ opencensus/trace/integrations.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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 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():