Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Fix errors storing large retry intervals. #6146

Merged
merged 2 commits into from
Oct 2, 2019

Commits on Oct 2, 2019

  1. Fix errors storing large retry intervals.

    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).
    erikjohnston committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    f44f1d2 View commit details
    Browse the repository at this point in the history
  2. Newsfile

    erikjohnston committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    2bc027a View commit details
    Browse the repository at this point in the history