|
|
|
|
|
by Mavvie
1158 days ago
|
|
That is the simple, but unreliable way to fix the issue. If your python process crashes or is killed between sending the commit and enqueueing the job, the job will never be enqueued. A possible solution to this is to use a "transactional outbox" pattern, but that has many of the same drawbacks of using postgres as a queue. |
|