We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maxWaitTime
Default maxWaitTime is 3000ms. When I set a delay to, for example, 5 seconds, this exception is thrown and consumer is crashed.
kafkajs-async-retry/src/index.ts
Lines 419 to 420 in 7f644a4
Consumer continue working, delaying execution even if delay > maxWaitTime
delay > maxWaitTime
Consumer is crashed:
[Consumer] Crash: KafkaJSNonRetriableError: Waiting 4970ms before resuming processing messages from xxx-group-id-retry-1
Just set delays more than maxWaitTime. For example delay is 5s, while default maxWaittime is 3000ms.
maxWaittime
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Default
maxWaitTime
is 3000ms. When I set a delay to, for example, 5 seconds, this exception is thrown and consumer is crashed.kafkajs-async-retry/src/index.ts
Lines 419 to 420 in 7f644a4
Expected behavior
Consumer continue working, delaying execution even if
delay > maxWaitTime
Actual behavior
Consumer is crashed:
Steps to reproduce the behavior
Just set delays more than
maxWaitTime
. For example delay is 5s, while defaultmaxWaittime
is 3000ms.Additional Specs
The text was updated successfully, but these errors were encountered: