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
2 jobs with the same singleton key, one in created and another one in retry states
In the above case the fetch query here will fetch both jobs and attempt to mark them as active. This causes the db to fail with UniqueKeyViolationError since both jobs have the same singleton key. In this situation the worker won't fetch messages forever
The text was updated successfully, but these errors were encountered:
Steps to repro
batch_size > 1
created
and another one inretry
statesIn the above case the fetch query here will fetch both jobs and attempt to mark them as
active
. This causes the db to fail withUniqueKeyViolationError
since both jobs have the same singleton key. In this situation the worker won't fetch messages foreverThe text was updated successfully, but these errors were encountered: