* Do not enable usage of Thread.stop() for request timeouts by default.

This commit is contained in:
hns 2007-03-28 20:06:04 +00:00
parent 6514226078
commit ad2b66c246

View file

@ -427,7 +427,7 @@ public class Transactor extends Thread {
} }
} }
if (isAlive() && "true".equals(nmgr.app.getProperty("requestTimeoutStop", "true"))) { if (isAlive() && "true".equals(nmgr.app.getProperty("requestTimeoutStop"))) {
// still running - check if we ought to stop() it // still running - check if we ought to stop() it
try { try {
Thread.sleep(2000); Thread.sleep(2000);