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
Re: https://github.com/acaloiaro/neoq/blob/main/backends/postgres/migrations/20230902105301_make_fingerprint_index_unique.up.sql#L2
The index would prevent two separate queues from enqueuing the same payload.
It should be:
CREATE UNIQUE INDEX IF NOT EXISTS neoq_jobs_fingerprint_unique_idx ON neoq_jobs (queue, fingerprint, status) WHERE NOT (status = 'processed');
The text was updated successfully, but these errors were encountered:
Right you are! This looks pretty dumb staring me in the face :)
Sorry, something went wrong.
Resolved by #122
No branches or pull requests
Re:
https://github.com/acaloiaro/neoq/blob/main/backends/postgres/migrations/20230902105301_make_fingerprint_index_unique.up.sql#L2
The index would prevent two separate queues from enqueuing the same payload.
It should be:
The text was updated successfully, but these errors were encountered: