summaryrefslogtreecommitdiffstats
path: root/crates/core/tedge_core
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-07-01 22:21:55 +0200
committerMatthias Beyer <matthias.beyer@ifm.com>2022-07-01 22:21:55 +0200
commitc2d7981df60e9ff83347e0ec210e8f005d159c6c (patch)
tree448810d4692bd9c09f21db5b9eb0fe2e4b48b365 /crates/core/tedge_core
parent0aad043159638ba20fcc85c41162c5bea8d078fa (diff)
Fix: Name info span equally go span for plugin
The span for the individual plugin communication disable routine is called "plugin.disable_communication". Change the name of this span to be better grepable with the other span. Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
Diffstat (limited to 'crates/core/tedge_core')
-rw-r--r--crates/core/tedge_core/src/reactor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core/tedge_core/src/reactor.rs b/crates/core/tedge_core/src/reactor.rs
index 4b11c7d5..01e36457 100644
--- a/crates/core/tedge_core/src/reactor.rs
+++ b/crates/core/tedge_core/src/reactor.rs
@@ -271,7 +271,7 @@ impl Reactor {
.collect::<futures::stream::FuturesUnordered<_>>()
.collect::<Vec<Result<(), _>>>()
.instrument(tracing::info_span!(
- "core.mainloop.plugins.disable-communications"
+ "core.mainloop.plugins.disable_communication"
))
.await;