Skip to content

Commit

Permalink
fix: downgrade otel to 2.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smorihira committed Sep 13, 2024
1 parent 435fc3c commit 5e0c2c1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 23 deletions.
41 changes: 21 additions & 20 deletions rust/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 rust/bin/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
kv = "0.24.0"
opentelemetry = "0.25.0"
opentelemetry = "0.23.0"
prost-types = "0.13.2"
proto = { version = "0.1.0", path = "../../libs/proto" }
sled = "0.34.7"
Expand Down
2 changes: 1 addition & 1 deletion rust/bin/meta/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.attribute("target_node", "target_node")
.attribute("exported_kubernetes_namaspace", "default")
.attribute("kubernetes_name", "vald-lb-gateway")
.endpoint("http://127.0.0.1:4318")
.endpoint("http://127.0.0.1:4317")
.tracer(Tracer::new().enabled(true));
let mut observability = ObservabilityImpl::new(observability_cfg)?;

Expand Down
2 changes: 1 addition & 1 deletion rust/bin/test_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
kv = "0.24.0"
opentelemetry = "0.25.0"
opentelemetry = "0.23.0"
prost-types = "0.13.2"
proto = { version = "0.1.0", path = "../../libs/proto" }
sled = "0.34.7"
Expand Down

0 comments on commit 5e0c2c1

Please sign in to comment.