.getProperty(ServerConstants.CARBON_INSTANCE);
Thread th = new Thread() {
public void run() {
try {
Thread.sleep(1000);
controllable.shutdownGracefully();
} catch (Exception e) {
String msg = "Cannot gracefully shutdown server";
log.error(msg, e);
throw new RuntimeException(msg, e);
}