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

jvergara
09.12.2009 7281025a24644ff22864c830e5b7c890c09336d8
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
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/InstallerHelper.java 1 ●●●● patch | view | raw | blame | history
opendj-sdk/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