This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add Retry-After
to M_LIMIT_EXCEEDED error responses
#16136
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5efeae8
Add Retry-After header
Half-Shot 9d26b2f
changelog
Half-Shot 7656743
Tidy tidy
Half-Shot ab6f26f
Retry-After may be ceil'd
Half-Shot a16504a
Fixes
Half-Shot 0ccce88
Add tests for exceeded rounding.
Half-Shot 6d82dd3
Merge branch 'develop' into hs/retry-after-headers
Half-Shot b26a203
Fixup types
Half-Shot f04efbf
Allowed headers on errors to be conditional based on config setting.
Half-Shot 793daa7
Update tests
Half-Shot 8774a1f
Merge branch 'develop' into hs/retry-after-headers
Half-Shot fc6ab19
Merge branch 'develop' into hs/retry-after-headers
Half-Shot efa247c
Revert "Allowed headers on errors to be conditional based on config s…
clokep 16a1e09
Revert "Update tests"
clokep 4302d2d
Use a class-property to control headers.
clokep File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Return a `Retry-After` with `M_LIMIT_EXCEEDED` error responses. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 2023 The Matrix.org Foundation C.I.C. | ||
# | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from synapse.api.errors import LimitExceededError | ||
|
||
from tests import unittest | ||
|
||
|
||
class ErrorsTestCase(unittest.TestCase): | ||
# Create a sub-class to avoid mutating the class-level property. | ||
class LimitExceededErrorHeaders(LimitExceededError): | ||
include_retry_after_header = True | ||
|
||
def test_limit_exceeded_header(self) -> None: | ||
err = ErrorsTestCase.LimitExceededErrorHeaders(retry_after_ms=100) | ||
self.assertEqual(err.error_dict(None).get("retry_after_ms"), 100) | ||
assert err.headers is not None | ||
self.assertEqual(err.headers.get("Retry-After"), "1") | ||
|
||
def test_limit_exceeded_rounding(self) -> None: | ||
err = ErrorsTestCase.LimitExceededErrorHeaders(retry_after_ms=3001) | ||
self.assertEqual(err.error_dict(None).get("retry_after_ms"), 3001) | ||
assert err.headers is not None | ||
self.assertEqual(err.headers.get("Retry-After"), "4") |
clokep marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.