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

lutoff
15.55.2009 f22367e5292d52dc05becfdc92e3f08f824207fe
fix for issue #4233 (ADS util: When a server is stopped, the createXXXcontext returns but doesn't clean thread)
With this modification, the created thread will be daemonized.
1 files modified
3 ■■■■■ changed files
opends/src/ads/org/opends/admin/ads/util/ConnectionUtils.java 3 ●●●●● patch | view | raw | blame | history
opends/src/ads/org/opends/admin/ads/util/ConnectionUtils.java
@@ -148,6 +148,7 @@
        }
      }
    });
    t.setDaemon(true);
    return getInitialLdapContext(t, pair, timeout);
  }
@@ -227,6 +228,7 @@
        }
      }
    });
    t.setDaemon(true);
    return getInitialLdapContext(t, pair, timeout);
  }
@@ -400,6 +402,7 @@
        }
      }
    });
    t.setDaemon(true);
    return getInitialLdapContext(t, pair, timeout);
  }