Merge pull request #184 from greatest-ape/greatest-ape-patch-1

ws: fix thread name issue
This commit is contained in:
Joakim Frostegård 2024-02-04 00:31:08 +01:00 committed by GitHub
commit 4074074bde
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")]