Closed thombergs closed 7 years ago
The exit code in the following code snippet should be "1" and not "0", since "0" means everything is good, which it isn't :).
@Override public void run(ApplicationArguments args) throws Exception { if (!initService.init()) { System.exit(0); } }
The exit code in the following code snippet should be "1" and not "0", since "0" means everything is good, which it isn't :).