Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 3.1.2
-
Fix Version/s: None
-
Component/s: Core: Exception Handling
-
Labels:None
-
User impact:Very High
-
Similar Issues:None
Description
The call to logException(e) in method handleException(Exception e) from org.mule.exception.DefaultSystemExceptionStrategy class is not protected against exceptions.
Thus, if an exception arise :
- no exception is logged (the source one or the new one) ;
- the retry policy isn't applied because the end of handleException method is skipped.
We do face this issue because of this other bug : MULE-6261 : logException raise a MissingResourceException (while looking for CoreMessages.exceptionStackIs() ) and thus we don't have any retry policy working.