https://issues.apache.org/bugzilla/show_bug.cgi?id=55342
Bug ID: 55342
Summary: Lost interruption
Product: Tomcat Modules
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: jdbc-pool
Assignee: [email protected]
Reporter: [email protected]
org.apache.tomcat.jdbc.pool.ConnectionPool#close should not call
Thread.interrupted() because interrupt was already reset by code that thrown
InterruptedException.
} catch (InterruptedException ex) {
if (getPoolProperties().getPropagateInterruptState()) {
Thread.currentThread().interrupt();
- } else {
- Thread.interrupted();
}
}
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]