Skip to content

Commit

Permalink
Merge pull request #1026 from pkyriakou23/fixing_issue988
Browse files Browse the repository at this point in the history
[ISSUE #790] [Bug] Method invokes System.exit(0)
close #988
  • Loading branch information
xwm1992 authored Jul 21, 2022
2 parents de9092a + a268ddb commit a3ac38a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void afterPropertiesSet() throws Exception {
e.printStackTrace();
}
logger.info("stopThread start....");
System.exit(0);
throw new RuntimeException();
});
stopThread.start();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void afterPropertiesSet() throws Exception {
e.printStackTrace();
}
logger.info("stopThread start....");
System.exit(0);
throw new RuntimeException();
});
stopThread.start();
}
Expand Down

0 comments on commit a3ac38a

Please sign in to comment.