Skip to content

Commit

Permalink
update limit map
Browse files Browse the repository at this point in the history
  • Loading branch information
niels1286 committed Jul 9, 2018
1 parent 272bbd1 commit 3c7b6fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,5 @@ private static Map<String, String> getModuleBootstrapClass() throws Exception {

public static void exit() {
exitNow = true;

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,14 @@ public RpcClientResult restartSystem() {
public void run() {
try {
Thread.sleep(1000L);
} catch (InterruptedException e) {
RpcServerManager.getInstance().shutdown();
ConnectionManager.getInstance().shutdown();
} catch (Exception e) {
Log.error(e);
}
RpcServerManager.getInstance().shutdown();
ConnectionManager.getInstance().shutdown();
Bootstrap.exit();

}
});
t.setDaemon(false);
t.start();
Map<String, Boolean> map = new HashMap<>();
map.put("value", true);
Expand Down

0 comments on commit 3c7b6fc

Please sign in to comment.