Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HBASE-26468 Region Server doesn't exit cleanly incase it crashes. #3862

Merged
merged 10 commits into from
Dec 1, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,7 @@ public static void logProcessInfo(Configuration conf) {
public void doMain(String args[]) {
try {
int ret = ToolRunner.run(HBaseConfiguration.create(), this, args);
if (ret != 0) {
System.exit(ret);
}
System.exit(ret);
} catch (Exception e) {
LOG.error("Failed to run", e);
System.exit(-1);
Expand Down