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

lutoff
15.55.2009 b3ccab1140b1bb6c77fa00e3c819efb01ae81b0c
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
opendj-sdk/opends/src/ads/org/opends/admin/ads/util/ConnectionUtils.java 3 ●●●●● patch | view | raw | blame | history
opendj-sdk/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);
  }