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

jvergara
09.12.2009 19b0f2029f055584e6ae21cfa6c0a914f300cd6c
Fix for issue 4215 (cannot "setup" with 200 generate entries when the root path is too long)
Remove the CLASSPATH variable from the environment to launch the import, this way the resulting command launched by import-ldif is shorter. Anyway we have to assume that this batch file approach has some limits in terms of the lenght of the path.
1 files modified
1 ■■■■ changed files
opends/src/quicksetup/org/opends/quicksetup/installer/InstallerHelper.java 1 ●●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/installer/InstallerHelper.java
@@ -154,6 +154,7 @@
    Map<String, String> env = pb.environment();
    env.remove(SetupUtils.OPENDS_JAVA_HOME);
    env.remove(SetupUtils.OPENDS_JAVA_ARGS);
    env.remove("CLASSPATH");
    pb.directory(installPath);
    Process process = null;
    try