summary refs log tree commit diff
path: root/synapse/http/site.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-07-17 15:26:47 +0100
committerRichard van der Hoff <richard@matrix.org>2018-07-17 15:26:47 +0100
commit2f5dfe299cbbeb34ed686c9ee1ab14ded13f368c (patch)
tree6b91ad3e6a2b0f002e1d4f26fe229c5a5736d541 /synapse/http/site.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentMerge pull request #3546 from matrix-org/rav/fix_erasure_over_federation (diff)
downloadsynapse-2f5dfe299cbbeb34ed686c9ee1ab14ded13f368c.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/http/site.py')
-rw-r--r--synapse/http/site.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/http/site.py b/synapse/http/site.py

index 41dd974cea..5fd30a4c2c 100644 --- a/synapse/http/site.py +++ b/synapse/http/site.py
@@ -42,9 +42,10 @@ class SynapseRequest(Request): which is handling the request, and returns a context manager. """ - def __init__(self, site, *args, **kw): - Request.__init__(self, *args, **kw) + def __init__(self, site, channel, *args, **kw): + Request.__init__(self, channel, *args, **kw) self.site = site + self._channel = channel self.authenticated_entity = None self.start_time = 0