From b2bf03b0331867eccd76583511eeb014c2df54a7 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 22 Nov 2006 16:11:41 +0000 Subject: [PATCH] * Fix bug where waiting thread isn't notified when requestengine is shut down. --- src/helma/framework/core/RequestEvaluator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index 5d462a89..5f0ef727 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -674,9 +674,8 @@ public final class RequestEvaluator implements Runnable { t.kill(); t.abort(); t.closeConnections(); - - notifyAll(); } + notifyAll(); } /**