From 13243b7d59ccb89dbd12fdf50b6eb56e16b07f26 Mon Sep 17 00:00:00 2001
From: davidely <davidely@localhost>
Date: Wed, 17 Jan 2007 04:28:07 +0000
Subject: [PATCH] Fixes for several small SearchFilter and Attribute matching issues (730, 695, 688, 689, 693). This also includes tests for the SearchFilter class. I've also elimiated a race condition from the operation test cases.
---
opends/src/server/org/opends/server/extensions/TraditionalWorkQueue.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/TraditionalWorkQueue.java b/opends/src/server/org/opends/server/extensions/TraditionalWorkQueue.java
index ba635fa..c607e8f 100644
--- a/opends/src/server/org/opends/server/extensions/TraditionalWorkQueue.java
+++ b/opends/src/server/org/opends/server/extensions/TraditionalWorkQueue.java
@@ -553,7 +553,8 @@
}
catch (InterruptedException ie)
{
- assert debugException(CLASS_NAME, "retryNextOperation", ie);
+ // This is somewhat expected so don't log.
+ // assert debugException(CLASS_NAME, "retryNextOperation", ie);
// If this occurs, then the worker thread must have been interrupted for
// some reason. This could be because the Directory Server is shutting
--
Gitblit v1.10.0