Skip to content
Open
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
55 changes: 45 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ base64 = "0.22"
futures = "0.3"
opentelemetry = { version = "0.27", features = ["trace"], optional = true }
opentelemetry-otlp = { version = "0.27", features = ["trace", "tonic"], optional = true }
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"], optional = true }
opentelemetry_sdk = { version = "0.32", features = ["rt-tokio"], optional = true }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OpenTelemetry stack version mismatch

Medium Severity

Raising only opentelemetry_sdk to 0.32 while opentelemetry, opentelemetry-otlp, and tracing-opentelemetry stay on 0.27/0.28 pins two SDK generations in the otel feature. The OTLP exporter comes from the 0.27 stack but main.rs builds the tracer provider and resources against the 0.32 crate, so types and traits no longer line up when that feature is enabled.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 99bf9fb. Configure here.

tracing-opentelemetry = { version = "0.28", optional = true }

[features]
Expand Down
Loading