Skip to content

Commit a800a1d

Browse files
committed
Fix divide by zero
1 parent 7053aed commit a800a1d

File tree

1 file changed

+2
-1
lines changed
  • src/tools/rust-analyzer/crates/rust-analyzer/src

1 file changed

+2
-1
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
use std::{
55
fmt,
6+
ops::Div as _,
67
time::{Duration, Instant},
78
};
89

@@ -499,7 +500,7 @@ impl GlobalState {
499500
tracing::trace!("updating notifications for {:?}", subscriptions);
500501
// Split up the work on multiple threads, but we don't wanna fill the entire task pool with
501502
// diagnostic tasks, so we limit the number of tasks to a quarter of the total thread pool.
502-
let max_tasks = self.config.main_loop_num_threads() / 4;
503+
let max_tasks = self.config.main_loop_num_threads().div(4).max(1);
503504
let chunk_length = subscriptions.len() / max_tasks;
504505
let remainder = subscriptions.len() % max_tasks;
505506

0 commit comments

Comments
 (0)