We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7435ebc commit 794c8dbCopy full SHA for 794c8db
src/docbuilder/limits.rs
@@ -39,7 +39,7 @@ impl Limits {
39
if let Some(timeout) = row.get::<_, Option<i32>>("timeout_seconds") {
40
limits.timeout = Duration::from_secs(timeout as u64);
41
}
42
- if let Some(targets) = row.get::<_, Option<u32>>("max_targets") {
+ if let Some(targets) = row.get::<_, Option<i32>>("max_targets") {
43
limits.targets = targets as usize;
44
45
0 commit comments