Skip to content

Commit 38233e2

Browse files
michalmuskalameta-codesync[bot]
authored andcommitted
Bump jar stack size
Summary: For some modules we can run into a stack overflow in the jar mode (default for local development) Reviewed By: robertoaloi Differential Revision: D90769167 fbshipit-source-id: dff9ae3d1f7fc054e96391ee412066b290e26cdd
1 parent fdc5789 commit 38233e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/eqwalizer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ impl EqwalizerExe {
221221
let (cmd, args) = match ext.as_str() {
222222
"jar" => (
223223
env!("ELP_EQWALIZER_JAVA").into(),
224-
vec!["-Xss20M".into(), "-jar".into(), path.into()],
224+
vec!["-Xss40M".into(), "-jar".into(), path.into()],
225225
),
226226
"" => (path, vec![]),
227227
_ => panic!("Unknown eqwalizer executable {path:?}"),

0 commit comments

Comments
 (0)