Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
012a51b4
Unverified
Commit
012a51b4
authored
Mar 24, 2021
by
Bernhard Schuster
Committed by
GitHub
Mar 24, 2021
Browse files
fix/jaeger: avoid array debug repr (#2685)
parent
b938a8ae
Pipeline
#130260
canceled with stages
in 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
node/jaeger/src/spans.rs
View file @
012a51b4
...
@@ -212,7 +212,7 @@ impl LazyIdent for Hash {
...
@@ -212,7 +212,7 @@ impl LazyIdent for Hash {
}
}
fn
extra_tags
(
&
self
,
span
:
&
mut
Span
)
{
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 {
...
@@ -222,7 +222,7 @@ impl LazyIdent for &Hash {
}
}
fn
extra_tags
(
&
self
,
span
:
&
mut
Span
)
{
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
);
}
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment