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/SoftReferenceEntryCache.java | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/SoftReferenceEntryCache.java b/opends/src/server/org/opends/server/extensions/SoftReferenceEntryCache.java
index 06842c6..788deb4 100644
--- a/opends/src/server/org/opends/server/extensions/SoftReferenceEntryCache.java
+++ b/opends/src/server/org/opends/server/extensions/SoftReferenceEntryCache.java
@@ -470,8 +470,6 @@
SoftReferenceEntryCacheCfg configuration,
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 (
@@ -493,9 +491,7 @@
SoftReferenceEntryCacheCfg 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