fallback Method throw exception but seata does not rollback (#3786)

Co-authored-by: xjs1919 <xjs@163.com>
pull/3796/head
xjs1919 7 months ago committed by GitHub
parent 058496d625
commit d56434f73a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -124,7 +124,7 @@ public class SentinelInvocationHandler implements InvocationHandler {
throw new AssertionError(e);
}
catch (InvocationTargetException e) {
throw new AssertionError(e.getCause());
throw e.getCause();
}
}
else {

Loading…
Cancel
Save