We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24e92d0 commit 0ea9bcdCopy full SHA for 0ea9bcd
yazi-config/src/tasks/tasks.rs
@@ -5,11 +5,11 @@ use crate::{validation::check_validation, MERGED_YAZI};
5
6
#[derive(Debug, Deserialize, Validate)]
7
pub struct Tasks {
8
- #[validate(range(min = 3, message = "Cannot be less than 3"))]
+ #[validate(range(min = 1, message = "Cannot be less than 1"))]
9
pub micro_workers: u8,
10
- #[validate(range(min = 5, message = "Cannot be less than 5"))]
11
pub macro_workers: u8,
12
13
pub bizarre_retry: u8,
14
}
15
0 commit comments