Skip to content

Commit bc084a6

Browse files
bors[bot]lnicola
andauthored
Merge #9817
9817: fix: Increase chalk overflow depth r=flodiebold a=lnicola This makes the experience better for people using `tonic`, see #7817. Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
2 parents f0d3259 + ab10ac7 commit bc084a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hir_ty/src/traits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub(crate) struct ChalkContext<'a> {
2626

2727
fn create_chalk_solver() -> chalk_recursive::RecursiveSolver<Interner> {
2828
let overflow_depth =
29-
var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(100);
29+
var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(300);
3030
let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(30);
3131
chalk_recursive::RecursiveSolver::new(overflow_depth, max_size, Some(Cache::new()))
3232
}

0 commit comments

Comments
 (0)