112113114115116117118119120121122
Thread cloudThread = new Thread(new Runnable() { @Override public void run() { CloudServerInstance instance = new CloudServerInstance(configStore); try { instance.run(); } catch (Exception e) { log.error("Error during fathom cloud run; forcing exit", e); System.exit(1); } }