()
| 214 | } |
| 215 | |
| 216 | @Override |
| 217 | public void stop() { |
| 218 | Shutdown.runShutdownActions(); |
| 219 | |
| 220 | // NOTE: We force exit here as it seems like the shutdown process |
| 221 | // is waiting for all non-daemon threads to terminate, e.g. clojure agent thread |
| 222 | // TODO: See if we can shut down these threads gracefully and avoid this. |
| 223 | System.exit(0); |
| 224 | } |
| 225 | |
| 226 | public static void main(String[] args) throws IOException { |
| 227 | initializeLogging(); |
nothing calls this directly
no test coverage detected