fix comma not formatted

This commit is contained in:
wireless4024 2023-02-12 11:19:33 +07:00
parent 6a1d254931
commit bf8debe475
No known key found for this signature in database
GPG Key ID: D102C2A868192A39
1 changed files with 1 additions and 1 deletions
actix-server/src

View File

@ -391,7 +391,7 @@ impl ServerWorker {
{
// passing `max_blocking_threads` as submission queue & completion queue
// should be useful than let it sit here
let queue_size = config.max_blocking_threads.clamp(1,u32::MAX as usize) as u32;
let queue_size = config.max_blocking_threads.clamp(1, u32::MAX as usize) as u32;
let mut builder = tokio_uring::builder();
builder.entries(queue_size);
builder.start(worker_fut);