summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2012-10-18 01:20:46 -0400
committerAde Lee <alee@redhat.com>2012-10-22 12:03:29 -0400
commit40bcc2cc6e4b6f9f9bd36c56fc63f20902486188 (patch)
treea236e137a47ab0bd9c9d6433a4b93e275c50ebd3 /base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
parent98ad9c109ec41d0977d4249ac5e41dcf4c484a22 (diff)
downloadpki-40bcc2cc6e4b6f9f9bd36c56fc63f20902486188.tar.gz
pki-40bcc2cc6e4b6f9f9bd36c56fc63f20902486188.tar.xz
pki-40bcc2cc6e4b6f9f9bd36c56fc63f20902486188.zip
Reorder VLV indexing for clones to avoid errors
Diffstat (limited to 'base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java')
-rw-r--r--base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java b/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
index e247b4297..c5804f2d4 100644
--- a/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
+++ b/base/common/src/com/netscape/cms/servlet/csadmin/ConfigurationUtils.java
@@ -1506,8 +1506,8 @@ public class ConfigurationUtils {
return dir.delete();
}
- public static void populateIndexes() throws Exception {
- CMS.debug("populateIndexes(): start");
+ public static void populateVLVIndexes() throws Exception {
+ CMS.debug("populateVLVIndexes(): start");
IConfigStore cs = CMS.getConfigStore();
IConfigStore dbCfg = cs.getSubStore("internaldb");
@@ -1542,7 +1542,7 @@ public class ConfigurationUtils {
taskComplete = true;
String val = (String) attr.getStringValues().nextElement();
if (val.compareTo("0") != 0) {
- CMS.debug("Error in populating local indexes: nsTaskExitCode=" + val);
+ CMS.debug("Error in populating local VLV indexes: nsTaskExitCode=" + val);
}
}
}
@@ -1552,7 +1552,7 @@ public class ConfigurationUtils {
} while (!taskComplete);
}
} catch (Exception e) {
- CMS.debug("populateIndexes(): Exception thrown: " + e);
+ CMS.debug("populateVLVIndexes(): Exception thrown: " + e);
throw e;
} finally {
releaseConnection(conn);