From 14bdfc0b57278f2bc95bea02745f60317411af2b Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 17 May 2007 13:05:54 +0000
Subject: [PATCH] The upgrader determines schema and configuration customization by performing an ldif-diff of the base schema and configuration files with those in the current server. Previously the invocation of this command just used the internal LDIFDiff class to perform this work. Given the recent discovery of problems associated with using DirectoryServer in the same process when the filesystem bits and the jars are different version, this commit externalizes the command invocation to an external process using the currently installed jars.
---
opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java b/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java
index c6d8b1a..9f35624 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java
@@ -256,7 +256,7 @@
* @throws LDIFException if there is an LDIF error
* @throws ApplicationException if there is an application specific error
*/
- public void applyCustomizationLdifFile(File ldifFile)
+ public void modify(File ldifFile)
throws IOException, LDIFException,
ApplicationException {
try {
--
Gitblit v1.10.0