From 6514e00144686efc02766175555093622f9bb9af Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Tue, 30 Mar 2021 15:07:07 +0200 Subject: [PATCH] Add tags to pov-fetcher. (#2768) * Add tags to pov-fetcher. * Add stage as well. * Get rid of redundant tags. --- .../network/availability-distribution/src/pov_requester/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/polkadot/node/network/availability-distribution/src/pov_requester/mod.rs b/polkadot/node/network/availability-distribution/src/pov_requester/mod.rs index 39525c72fc..45a3be4108 100644 --- a/polkadot/node/network/availability-distribution/src/pov_requester/mod.rs +++ b/polkadot/node/network/availability-distribution/src/pov_requester/mod.rs @@ -120,7 +120,8 @@ impl PoVRequester { )).await; let span = jaeger::Span::new(candidate_hash, "fetch-pov") - .with_validator_index(from_validator); + .with_validator_index(from_validator) + .with_relay_parent(parent); ctx.spawn("pov-fetcher", fetch_pov_job(pov_hash, pending_response.boxed(), span, tx).boxed()) .await .map_err(|e| Error::SpawnTask(e))