This is an automated email from the ASF dual-hosted git repository. mblow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/asterixdb.git
commit 39eb84fadbd41911c63dc9891bb433c85954fd18 Author: Michael Blow <[email protected]> AuthorDate: Thu Feb 11 16:45:42 2021 -0500 [NO ISSUE][*DB] Log at FATAL level when halting due to failure to stop active runtime Change-Id: Ifa3d49704919417fd3c5b11538f6ec90bde03c73 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/9987 Integration-Tests: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> Reviewed-by: Michael Blow <[email protected]> Reviewed-by: Murtadha Hubail <[email protected]> --- .../src/main/java/org/apache/asterix/active/ActiveManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asterixdb/asterix-active/src/main/java/org/apache/asterix/active/ActiveManager.java b/asterixdb/asterix-active/src/main/java/org/apache/asterix/active/ActiveManager.java index 458008b..ba04967 100644 --- a/asterixdb/asterix-active/src/main/java/org/apache/asterix/active/ActiveManager.java +++ b/asterixdb/asterix-active/src/main/java/org/apache/asterix/active/ActiveManager.java @@ -179,7 +179,7 @@ public class ActiveManager { try { stopIfRunning(runtime, content.getTimeout(), content.getUnit()); } catch (Throwable th) { - LOGGER.warn("Failed to stop runtime: {}", runtimeId, th); + LOGGER.fatal("Failed to stop runtime: {}", runtimeId, th); ExitUtil.halt(ExitUtil.EC_UNCAUGHT_THROWABLE); } });
