mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
18.27.2006 8fabd96eb22acd4e893b69c52595fb7d7240509d
Fix a timer in the server shutdown monitor that only waited 20 seconds (due to
a typo) rather than 30 seconds as mentioned in the comments.

OpenDS Issue Number: 591
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/core/ServerShutdownMonitor.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/core/ServerShutdownMonitor.java
@@ -168,7 +168,7 @@
        return;
      }
      stopTime = System.currentTimeMillis() + 20000;
      stopTime = System.currentTimeMillis() + 30000;
      while (System.currentTimeMillis() < stopTime)
      {
        iterator = threadList.iterator();