renaming worker threads

This commit is contained in:
Godmode Galactus 2023-02-13 22:29:45 +01:00
parent 11405d304e
commit e12fee2c5c
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ pub async fn main() -> anyhow::Result<()> {
let runtime = Builder::new_multi_thread()
.worker_threads(8)
.thread_name("quic-server")
.thread_name("lite-rpc-workers")
.enable_all()
.build()
.unwrap();