make all sub-app invocations act like stack calls, fix workflows

This commit is contained in:
Jonathan Shook
2022-06-24 15:40:28 -05:00
parent e062e6f0cd
commit cb4c033a63
9 changed files with 49 additions and 36 deletions

View File

@@ -347,9 +347,7 @@ public class NBWebServer implements Runnable {
server.join();
} catch (Exception e) {
logger.error("error while starting doc server", e);
e.printStackTrace(System.out);
System.exit(2);
throw new RuntimeException("error while starting doc server: "+e.toString(),e);
}
}