From 944ae93b93081ea158909a12ce3ff2918cf3e93d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sun, 4 Feb 2024 00:27:44 +0100 Subject: [PATCH] ws: fix thread name issue --- crates/ws/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ws/src/lib.rs b/crates/ws/src/lib.rs index 5d085348..76e60a4a 100644 --- a/crates/ws/src/lib.rs +++ b/crates/ws/src/lib.rs @@ -126,7 +126,7 @@ pub fn run(config: Config) -> ::anyhow::Result<()> { }) .context("spawn swarm worker")?; - join_handles.push((WorkerType::Socket(i), handle)); + join_handles.push((WorkerType::Swarm(i), handle)); } #[cfg(feature = "prometheus")]