From 2973e1ec450dcfd99e193176ddbe25eafc652e17 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Wed, 05 Nov 2008 10:06:27 +0000
Subject: [PATCH] Fix for issue #3544 (upgrade fails during verification of replication)
---
opends/src/server/org/opends/server/util/ServerConstants.java | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index b93944f..954c585 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -2627,7 +2627,22 @@
public static final String PROPERTY_DISABLE_CONNECTION_HANDLERS =
"org.opends.server.DisableConnectionHandlers";
+ /**
+ * The name of the system property that can be used to disable any
+ * synchronization provider that may be enabled in the server configuration.
+ * This may be used to start the server in a mode where it will not accept any
+ * external connections, but may still be used for processing internal
+ * operations.
+ */
+ public static final String PROPERTY_DISABLE_SYNCHRONIZATION =
+ "org.opends.server.DisableSynchronization";
+ /**
+ * The name of the system property that can be used to disable the
+ * synchronization between between administration data.
+ */
+ public static final String PROPERTY_DISABLE_ADMIN_DATA_SYNCHRONIZATION =
+ "org.opends.server.DisableAdminDataSynchronization";
/**
* The name of the system property that can be used to indicate whether
--
Gitblit v1.10.0