From 5c270973c01ffbdcd9f884deacafeb11d1edf200 Mon Sep 17 00:00:00 2001
From: abobrov <abobrov@localhost>
Date: Sun, 26 Aug 2007 01:10:02 +0000
Subject: [PATCH] - fix entry cache mutable properties [properties that can be changed on the fly without   any admin action required] functionality which got broken presumably when   migrating to new admin framework.

---
 opends/src/server/org/opends/server/extensions/FIFOEntryCache.java |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/FIFOEntryCache.java b/opends/src/server/org/opends/server/extensions/FIFOEntryCache.java
index e1b070f..f602d14 100644
--- a/opends/src/server/org/opends/server/extensions/FIFOEntryCache.java
+++ b/opends/src/server/org/opends/server/extensions/FIFOEntryCache.java
@@ -884,8 +884,6 @@
       List<Message> unacceptableReasons
       )
   {
-    // Make sure that we can process the defined character sets.  If so, then
-    // we'll accept the new configuration.
     boolean applyChanges = false;
     EntryCacheCommon.ConfigErrorHandler errorHandler =
       EntryCacheCommon.getConfigErrorHandler (
@@ -907,9 +905,7 @@
       FIFOEntryCacheCfg configuration
       )
   {
-    // Make sure that we can process the defined character sets.  If so, then
-    // activate the new configuration.
-    boolean applyChanges = false;
+    boolean applyChanges = true;
     ArrayList<Message> errorMessages = new ArrayList<Message>();
     EntryCacheCommon.ConfigErrorHandler errorHandler =
       EntryCacheCommon.getConfigErrorHandler (

--
Gitblit v1.10.0