Skip to content

Commit

Permalink
EJBClientInvocationContext: log exception on the first interceptor only
Browse files Browse the repository at this point in the history
  • Loading branch information
tadamski committed Jan 28, 2020
1 parent 4545f01 commit 533f42f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -626,8 +626,8 @@ Object getResult(boolean retry) throws Exception {
}
return result;
} catch (Throwable t) {
log.tracef("Encountered exception while calling getResult(): exception = %s", t.toString());
if (idx == 0) {
log.tracef("Encountered exception while calling getResult(): exception = %s", t.toString());
synchronized (lock) {
// retry if we can
this.resultProducer = null;
Expand Down

0 comments on commit 533f42f

Please sign in to comment.