Dedup subsystem name (#6305)

Signed-off-by: Andrei Sandu <andrei-mihail@parity.io>

Signed-off-by: Andrei Sandu <andrei-mihail@parity.io>
This commit is contained in:
Andrei Sandu
2022-11-17 14:59:07 +02:00
committed by GitHub
parent 0c9187a01a
commit ad41e56e6e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ where
let future = run_network_in(self, ctx, network_stream)
.map_err(|e| SubsystemError::with_origin("network-bridge", e))
.boxed();
SpawnedSubsystem { name: "network-bridge-subsystem", future }
SpawnedSubsystem { name: "network-bridge-rx-subsystem", future }
}
}
+1 -1
View File
@@ -90,7 +90,7 @@ where
let future = run_network_out(self, ctx)
.map_err(|e| SubsystemError::with_origin("network-bridge", e))
.boxed();
SpawnedSubsystem { name: "network-bridge-subsystem", future }
SpawnedSubsystem { name: "network-bridge-tx-subsystem", future }
}
}