Skip to content

Commit

Permalink
Merge pull request #184 from greatest-ape/greatest-ape-patch-1
Browse files Browse the repository at this point in the history
ws: fix thread name issue
  • Loading branch information
greatest-ape authored Feb 3, 2024
2 parents de4a91a + 944ae93 commit 4074074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ws/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 4074074

Please sign in to comment.