From 06430a62e8af93edb1666b20130e761195228a43 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 4 Sep 2002 13:35:50 +0000 Subject: [PATCH] Do not call stop() method on threads when aborting a transaction. The method is deprecated, and it seemed to leave db connections in an unreclaimable state. --- src/helma/framework/core/RequestEvaluator.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index da1a755a..3502a1e7 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -608,9 +608,8 @@ public final class RequestEvaluator implements Runnable { try { t.abort (); } catch (Exception ignore) {} - try { - t.stop (); - } catch (Exception ignore) {} + // FIXME: do not call deprecated method stop() on threads - + // do we need a substitute for it? } else { notifyAll (); }