Skip to content

Commit 7cfe344

Browse files
fix: double stack again
bench: 2517656
1 parent 58c8dd6 commit 7cfe344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/src/search_thread.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl SearchThread {
8686

8787
let handle = std::thread::Builder::new()
8888
.name("bk-search-thread".to_string())
89-
.stack_size(4 * 1024 * 1024) // 4 MiB
89+
.stack_size(8 * 1024 * 1024) // 8 MiB
9090
.spawn(move || {
9191
let mut stdout = std::io::stdout();
9292
'search_loop: loop {

0 commit comments

Comments
 (0)