ws: fix thread name issue

This commit is contained in:
Joakim Frostegård 2024-02-04 00:27:44 +01:00 committed by GitHub
parent de4a91a7c4
commit 944ae93b93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")]