remove exitcode -805306369 triggering oom

This commit is contained in:
maskers 2024-07-15 20:31:47 +03:00
parent 19ad98dda0
commit 5ae3046ee2

View file

@ -166,7 +166,7 @@ fn oom(log: &str) -> Issue {
"Allocating more RAM to your instance could help prevent this crash.".to_string(),
);
let found = log.contains("java.lang.OutOfMemoryError") || log.contains("-805306369");
let found = log.contains("java.lang.OutOfMemoryError");
found.then_some(issue)
}