Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update httpx and fastapi bitmap #1239

Merged
merged 2 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions opencensus/trace/integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ class _Integrations:
PYRAMID = 512
lzchen marked this conversation as resolved.
Show resolved Hide resolved
REQUESTS = 1024
SQLALCHEMY = 2056
HTTPX = 4096
FASTAPI = 8192
HTTPX = 16777216
FASTAPI = 4194304


def get_integrations():
Expand Down
Loading