diff options
author | Erik Johnston <erik@matrix.org> | 2019-10-02 11:05:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-02 11:05:22 +0100 |
commit | b4fe7e19c0dd51269965140eee38ae8f68382a5d (patch) | |
tree | fe68c8424188b48f2c32e64c3c53f172f92803d6 /tests | |
parent | Merge pull request #6145 from matrix-org/erikj/fix_censored_redactions (diff) | |
parent | Newsfile (diff) | |
download | synapse-b4fe7e19c0dd51269965140eee38ae8f68382a5d.tar.xz |
Merge pull request #6146 from matrix-org/erikj/fix_destination_retry_timings
Fix errors storing large retry intervals.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_transactions.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/storage/test_transactions.py b/tests/storage/test_transactions.py index a771d5af29..8e817e2c7f 100644 --- a/tests/storage/test_transactions.py +++ b/tests/storage/test_transactions.py @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from synapse.util.retryutils import MAX_RETRY_INTERVAL + from tests.unittest import HomeserverTestCase @@ -45,3 +47,12 @@ class TransactionStoreTestCase(HomeserverTestCase): """ d = self.store.set_destination_retry_timings("example.com", 1000, 50, 100) self.get_success(d) + + def test_large_destination_retry(self): + d = self.store.set_destination_retry_timings( + "example.com", MAX_RETRY_INTERVAL, MAX_RETRY_INTERVAL, MAX_RETRY_INTERVAL + ) + self.get_success(d) + + d = self.store.get_destination_retry_timings("example.com") + self.get_success(d) |