* Do not enable usage of Thread.stop() for request timeouts by default.
This commit is contained in:
parent
6514226078
commit
ad2b66c246
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
try {
|
||||
Thread.sleep(2000);
|
||||
|
|
Loading…
Add table
Reference in a new issue