From c8447177b6c9d155ea48009583a20ecce7ffd8c6 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 18 Jan 2010 22:27:40 +0000
Subject: [PATCH] Fix for issue 3901 (Setup fails when inserting a server in a replication topology with large umount of data) - Add a 'Runtime Options' step in the wizard. By default this will contain just two labels and two buttons: Server Runtime Options: Use Default <button to change> Import Options: Use Default <button to change>
---
opends/src/quicksetup/org/opends/quicksetup/installer/offline/OfflineInstaller.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/installer/offline/OfflineInstaller.java b/opends/src/quicksetup/org/opends/quicksetup/installer/offline/OfflineInstaller.java
index 3c476b7..8fa59a4 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/installer/offline/OfflineInstaller.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/installer/offline/OfflineInstaller.java
@@ -143,7 +143,7 @@
}
try
{
- new ServerController(this).startServer(!isVerbose());
+ new ServerController(this).startServer(!isStartVerbose());
}
catch (ApplicationException ae)
{
@@ -555,7 +555,7 @@
public String getInstancePath()
{
String installPath = Utils.getInstallPathFromClasspath();
- return Utils.getInstancePathFromClasspath(installPath);
+ return Utils.getInstancePathFromInstallPath(installPath);
}
/**
--
Gitblit v1.10.0