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.
This commit is contained in:
hns 2002-09-04 13:35:50 +00:00
parent 921e4787cb
commit 06430a62e8

View file

@ -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 ();
}