From 8fdeab93773ff431de95782889f628e318fe93dc Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Tue, 06 Oct 2009 15:20:22 +0000
Subject: [PATCH] Fix regression caused by rebuild-index commit. Issue 4268.
---
opends/src/server/org/opends/server/backends/jeb/importLDIF/Importer.java | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/jeb/importLDIF/Importer.java b/opends/src/server/org/opends/server/backends/jeb/importLDIF/Importer.java
index 4f51731..3cc9ef4 100644
--- a/opends/src/server/org/opends/server/backends/jeb/importLDIF/Importer.java
+++ b/opends/src/server/org/opends/server/backends/jeb/importLDIF/Importer.java
@@ -606,11 +606,11 @@
InitializationException, IOException, JebException, DatabaseException,
InterruptedException, ExecutionException
{
+ this.rootContainer = rootContainer;
+ this.reader = new LDIFReader(importConfiguration, rootContainer,
+ LDIF_READER_BUFFER_SIZE);
try
{
- this.rootContainer = rootContainer;
- this.reader = new LDIFReader(importConfiguration, rootContainer,
- LDIF_READER_BUFFER_SIZE);
Message message =
NOTE_JEB_IMPORT_STARTING.get(DirectoryServer.getVersionString(),
BUILD_ID, REVISION_NUMBER);
@@ -2788,7 +2788,6 @@
flushIndexBuffers();
cursor.close();
} catch (Exception e) {
- System.out.println("here");
e.printStackTrace();
}
return null;
--
Gitblit v1.10.0