commit | 39eb84fadbd41911c63dc9891bb433c85954fd18 | [log] [tgz] |
---|---|---|
author | Michael Blow <mblow@apache.org> | Thu Feb 11 16:45:42 2021 -0500 |
committer | Michael Blow <mblow@apache.org> | Fri Feb 12 16:17:15 2021 +0000 |
tree | 6ab6d1c8d1dac15f50e81fd788e5a7b9010487b3 | |
parent | eccf4baa03f03eadc337763c312429f1abd7aa4f [diff] |
[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 <jenkins@fulliautomatix.ics.uci.edu> Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Reviewed-by: Michael Blow <mblow@apache.org> Reviewed-by: Murtadha Hubail <mhubail@apache.org>
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 @@ 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); } });