-
@aricart Hello and sorry that I tag you directly |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Can you show me an example, and the options passed to create the consumer? |
Beta Was this translation helpful? Give feedback.
-
@whocaresk sorry this fell out of my radar, didn't see the notification. |
Beta Was this translation helpful? Give feedback.
@whocaresk sorry this fell out of my radar, didn't see the notification.
When I copied your code, I saw the same issue - and then digging, realized that the problem is that your ack wait option:
ack_wait: 1000 * 60 * 2
is effectively 120,000ns - the type for that setting is specified in nanos, so you need to wrap it with the providednanos()
function:ack_wait: nanos(1000 * 60 * 2)