summary refs log tree commit diff
path: root/tests/storage/test_transactions.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix errors storing large retry intervals.Erik Johnston2019-10-021-0/+11
| | | | | | | | | We have set the max retry interval to a value larger than a postgres or sqlite int can hold, which caused exceptions when updating the destinations table. To fix postgres we need to change the column to a bigint, and for sqlite we lower the max interval to 2**62 (which is still incredibly long).
* Add 'failure_ts' column to 'destinations' table (#6016)Richard van der Hoff2019-09-171-3/+5
| | | | Track the time that a server started failing at, for general analysis purposes.
* Add testsErik Johnston2018-10-021-0/+45