From a86ccabe04073cbf24c3321d87a9f142ace3e27f Mon Sep 17 00:00:00 2001 From: Rahul Imran Date: Wed, 16 Oct 2024 22:36:51 +0100 Subject: [PATCH] remove extra ; Signed-off-by: Rahul Imran --- src/handlers/event/analyze_logs/issues.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/event/analyze_logs/issues.rs b/src/handlers/event/analyze_logs/issues.rs index 3c612b0..5987c74 100644 --- a/src/handlers/event/analyze_logs/issues.rs +++ b/src/handlers/event/analyze_logs/issues.rs @@ -370,7 +370,7 @@ fn java_32_bit(log: &str) -> Issue { ); let found = log.contains("Could not reserve enough space for ") - || log.contains("Invalid maximum heap size: "); + || log.contains("Invalid maximum heap size: ") || log.contains("Invalid initial heap size: "); found.then_some(issue) }