You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect that the 'produce' task will produce 1, 2, 3 and the 'consume' task will log 1, 2 3.
In reality, the 'consume' task will log 1, 1, 2.
The practical example that I have is to invoke in a loop an API that supports pagination, and insert each page of results in the database. Due to the bug above, the first page is inserted twice and the last one is missing.
Here is a screenshot:
Environment
Kestra Version: 0.17.4
Operating System (OS/Docker/Kubernetes): Kubernetes
Java Version (if you don't run kestra in Docker): default
The text was updated successfully, but these errors were encountered:
Describe the issue
Given the following flow:
I would expect that the 'produce' task will produce 1, 2, 3 and the 'consume' task will log 1, 2 3.
In reality, the 'consume' task will log 1, 1, 2.
The practical example that I have is to invoke in a loop an API that supports pagination, and insert each page of results in the database. Due to the bug above, the first page is inserted twice and the last one is missing.
Here is a screenshot:
Environment
The text was updated successfully, but these errors were encountered: