Skip to content

Commit

Permalink
[BUG] Try bumping opentelemetry reqs for Python. (#3403)
Browse files Browse the repository at this point in the history
This is to pick up
open-telemetry/opentelemetry-python#3270.

In short, concurrent HTTP requests were being coalesced into the same
trace, and it was chained hand-over-hand so it was quite illegible.
This should fix that, if it passes CI.
  • Loading branch information
rescrv authored Jan 4, 2025
1 parent 424752d commit 39c0e42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ dependencies = [
'posthog >= 2.4.0',
'typing_extensions >= 4.5.0',
'onnxruntime >= 1.14.1',
'opentelemetry-api>=1.2.0',
'opentelemetry-api>=1.24.0',
'opentelemetry-exporter-otlp-proto-grpc>=1.2.0',
'opentelemetry-instrumentation-fastapi>=0.41b0',
'opentelemetry-sdk>=1.2.0',
'opentelemetry-sdk>=1.24.0',
'tokenizers >= 0.13.2',
'pypika >= 0.48.9',
'tqdm >= 4.65.0',
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ kubernetes>=28.1.0
mmh3>=4.0.1
numpy>=1.22.5
onnxruntime>=1.14.1
opentelemetry-api>=1.2.0
opentelemetry-api>=1.24.0
opentelemetry-exporter-otlp-proto-grpc>=1.24.0
opentelemetry-instrumentation-fastapi>=0.41b0
opentelemetry-sdk>=1.2.0
opentelemetry-sdk>=1.24.0
orjson>=3.9.12
overrides>=7.3.1
posthog>=2.4.0
Expand Down

0 comments on commit 39c0e42

Please sign in to comment.