From cfb5767d9216efaf0c1738b5ce1ae243630fd8f5 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Mon, 30 Apr 2007 21:31:38 +0000
Subject: [PATCH] This commit is mainly intended to prevent the sort of false positives that occur when the upgrader assumes the server has been upgraded properly but leaves the server in a corrupt state (see issues 1546 and 1559).  The following changes are introduced:

---
 opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java b/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java
index 5d4eff3..0933e11 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java
@@ -68,10 +68,13 @@
    * Creates an instance.
    * @param app using this tool
    * @param url base context for an OpenDS build list
+   * @param proxy Proxy to use for connections; can be null if not proxy is
+   * to be used
    */
-  public RemoteBuildManager(Application app, URL url) {
+  public RemoteBuildManager(Application app, URL url, Proxy proxy) {
     this.app = app;
     this.buildListUrl = url;
+    this.proxy = proxy;
   }
 
   /**

--
Gitblit v1.10.0