In my annotated hystrix command I have not defined any fallback method. But when my command execution gets fail, it gives me
eventNotifier.markEvent(HystrixEventType.FALLBACK_FAILURE, commandKey);
But I think this should be
eventNotifier.markEvent(HystrixEventType.FALLBACK_MISSING, commandKey);
you have a check here as if (fe instanceof UnsupportedOperationException) {} before making event for FALLBACK_MISSING.
Can somebody confirm whether this is expected? Any help would be appreciated.
@dmgcodevil Do you know if it is possible to support FALLBACK_MISSING in Javanica?
@mattrjacobs will take a look shortly
@dmgcodevil thank you .
I also found the cause and tested yesterday. I was about to provide information here to seek possibilities to contribute :)
@mattrjacobs in which release we can expect to be available ? :)
This is released in v1.5.13 now