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 a1ceebc commit 34befa5Copy full SHA for 34befa5
rust/operator-binary/src/config/jvm.rs
@@ -89,7 +89,9 @@ pub fn construct_heap_jvm_args(
89
}
90
91
fn is_heap_jvm_argument(jvm_argument: &str) -> bool {
92
- jvm_argument.to_lowercase().starts_with("-xm")
+ let lowercase = jvm_argument.to_lowercase();
93
+
94
+ lowercase.starts_with("-xms") || lowercase.starts_with("-xmx")
95
96
97
#[cfg(test)]
0 commit comments