From 04ead8f1c81d759108686bbd4add4b9eee542c2e Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 11 Apr 2007 18:51:40 +0000
Subject: [PATCH] During schema and configuration upgrade, the server is started 'in process' without any connection handlers and the changes are made using an internal connection to the server.  During configuration/schema updates:

---
 opends/src/quicksetup/org/opends/quicksetup/Installation.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/Installation.java b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
index 35f8a8b..f12c1cd 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Installation.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Installation.java
@@ -311,7 +311,7 @@
    */
   public File getBaseSchemaFile() throws QuickSetupException {
     return new File(getConfigurationUpgradeDirectory(),
-                  "config/upgrade/schema.ldif." + getSvnRev().toString());
+                  "schema.ldif." + getSvnRev().toString());
   }
 
   /**
@@ -471,7 +471,7 @@
   public File createHistoryBackupDirectory() throws IOException {
     File backupDirectory =
             new File(getHistoryDirectory(),
-                    "upgrade-" + System.currentTimeMillis());
+                     Long.toString(System.currentTimeMillis()));
     if (backupDirectory.exists()) {
       backupDirectory.delete();
     }

--
Gitblit v1.10.0