Combine blocking and non-blocking kafka retry unexpected behavior #2669
-
I'm combining blocking and non-blocking retry but i have an issue as follow:
so it's blocking the consumer until the blockingMaxRetryAttempts are exhausted or it succeeded, but if the exception changed from BlockingException to NonBlockingException.class then i expect the flow to be switched to non-blocking retry as i configured
but it didn't switch until the blocking retries were exhausted (let's say it retired 10 times blocking then in the 11th time the thrown exception is a non-blocking one so i expect to go to the non-blocking handler which it didn't happen), so how can i make it switch directly to non-blocking based on the configured exceptions on the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That was recently fixed (in 3.0.6 and 2.9.8) #2645 |
Beta Was this translation helpful? Give feedback.
That was recently fixed (in 3.0.6 and 2.9.8) #2645