Ignore null message when introspecting resource cleanup failure
Closes gh-30597
This commit is contained in:
parent
5ad853ef5b
commit
c052a02592
|
|
@ -1067,10 +1067,11 @@ public abstract class TransactionAspectSupport implements BeanFactoryAware, Init
|
|||
* @param ex the throwable to try to unwrap
|
||||
*/
|
||||
private Throwable unwrapIfResourceCleanupFailure(Throwable ex) {
|
||||
if (ex instanceof RuntimeException &&
|
||||
ex.getCause() != null &&
|
||||
ex.getMessage().startsWith("Async resource cleanup failed")) {
|
||||
return ex.getCause();
|
||||
if (ex instanceof RuntimeException && ex.getCause() != null) {
|
||||
String msg = ex.getMessage();
|
||||
if (msg != null && msg.startsWith("Async resource cleanup failed")) {
|
||||
return ex.getCause();
|
||||
}
|
||||
}
|
||||
return ex;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue