Skip to content

Commit

Permalink
Update send-to-jaeger URL output
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Nov 18, 2021
1 parent eaf6e27 commit 35e0bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/send-trace-to-jaeger/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn main() {
.into_iter()
.map(|mut data| {
if !logged_url {
log_web_url(&jaeger_web_ui_url, &data["traceId"].to_string());
log_web_url(&jaeger_web_ui_url, &data["traceId"].as_str().unwrap());
logged_url = true;
}
data["localEndpoint"] = Value::Object(local_endpoint.clone());
Expand Down

0 comments on commit 35e0bbe

Please sign in to comment.