| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2024-09-10 | 1.2 kB | |
| v2.18.3 source code.tar.gz | 2024-09-10 | 289.6 kB | |
| v2.18.3 source code.zip | 2024-09-10 | 352.8 kB | |
| Totals: 3 Items | 643.5 kB | 0 | |
Enhancements
- [Basic] Use the shared concat operator when appending errors.
The standard push operation for updates is designed for arrays and uses array_append internally. This replaces all use of push with a fragment that uses the || operator instead, which works for both arrays and jsonb.
CockroachDB doesn't support arrays of jsonb, but they do support simple jsonb columns. Now we can append to the errors column in either format for CRDB compatibility.
Bug Fixes
- [Queue] Link the dynamic queue supervisor and
Midwifefor automatic restarts.
When a producer crashes it brings the queue's supervisor down with it. With enough database errors, the producer may crash repeatedly enough to exhaust restarts and bring down the DynamicSupervisor in charge of all queues.
Now the supervisor is linked to the midwife to ensure that the midwife restarts as well, and it restarts all of the queues.
- [Testing] Handle
insert_all/3with streams for the:inlinetesting engine.
The inline engine's insert_all_jobs callback incorrectly expected changesets to always be a list rather and couldn't handle streams.