Skip to content

Commit

Permalink
Remove explicit type
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Nov 14, 2021
1 parent ac710f7 commit 7f0e2d9
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 @@ -59,7 +59,7 @@ fn main() {
if let Ok(lines) = read_lines(first_arg) {
for line in lines {
if let Ok(json_to_parse) = line {
let v: Value = match serde_json::from_str::<Vec<Value>>(&json_to_parse) {
let v = match serde_json::from_str::<Vec<Value>>(&json_to_parse) {
Ok(v) => v
.into_iter()
.map(|mut data| {
Expand Down

0 comments on commit 7f0e2d9

Please sign in to comment.