Skip to content

Commit

Permalink
Handle hook failures more gracefully
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jacobs committed Apr 28, 2015
1 parent 08f48c0 commit 60c9297
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public Observable<R> call(Throwable t) {
logger.warn("ExecutionHook.onError returned an exception that was not an instance of HystrixBadRequestException so will be ignored.", decorated);
}
} catch (Exception hookEx) {
logger.warn("Error calling ExecutionHook.onError", hookEx);
logger.warn("Error calling HystrixCommandExecutionHook.onError", hookEx);
}
/*
* HystrixBadRequestException is treated differently and allowed to propagate without any stats tracking or fallback logic
Expand Down

0 comments on commit 60c9297

Please sign in to comment.