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/loggers/LoggerThread.java | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/loggers/LoggerThread.java b/opends/src/server/org/opends/server/loggers/LoggerThread.java
index b2ab23f..74be7f8 100644
--- a/opends/src/server/org/opends/server/loggers/LoggerThread.java
+++ b/opends/src/server/org/opends/server/loggers/LoggerThread.java
@@ -97,7 +97,12 @@
try
{
sleep(time);
- } catch(Exception e)
+ }
+ catch(InterruptedException e)
+ {
+ // We expect this to happen.
+ }
+ catch(Exception e)
{
assert debugException(CLASS_NAME, "run", e);
}
--
Gitblit v1.10.0