Unverified Commit 012a51b4 authored by Bernhard Schuster's avatar Bernhard Schuster Committed by GitHub
Browse files

fix/jaeger: avoid array debug repr (#2685)

parent b938a8ae
Pipeline #130260 canceled with stages
in 40 seconds
......@@ -212,7 +212,7 @@ impl LazyIdent for Hash {
}
fn extra_tags(&self, span: &mut Span) {
span.add_string_fmt_debug_tag("relay-parent", self.0);
span.add_string_fmt_debug_tag("relay-parent", self);
}
}
......@@ -222,7 +222,7 @@ impl LazyIdent for &Hash {
}
fn extra_tags(&self, span: &mut Span) {
span.add_string_fmt_debug_tag("relay-parent", self.0);
span.add_string_fmt_debug_tag("relay-parent", self);
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment