diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-02 22:42:36 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-02 22:42:36 +0100 |
commit | 1dfd650348251508ac044b3db114092b1e857a74 (patch) | |
tree | dc0223d48a700c3a6b3f9bd9f0c15fd1a36d55d6 /synapse | |
parent | Merge pull request #3170 from matrix-org/rav/more_logcontext_leaks (diff) | |
download | synapse-1dfd650348251508ac044b3db114092b1e857a74.tar.xz |
add missing param to cancelled_to_request_timed_out_error
This gets two arguments, not one.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/http/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/__init__.py b/synapse/http/__init__.py index 0d47ccdb59..054372e179 100644 --- a/synapse/http/__init__.py +++ b/synapse/http/__init__.py @@ -25,7 +25,7 @@ class RequestTimedOutError(SynapseError): super(RequestTimedOutError, self).__init__(504, "Timed out") -def cancelled_to_request_timed_out_error(value): +def cancelled_to_request_timed_out_error(value, timeout): """Turns CancelledErrors into RequestTimedOutErrors. For use with async.add_timeout_to_deferred |