diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:27:22 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:27:22 +0100 |
commit | 7a5818ed811c6da046e60bcc7eacb7a28a92cd73 (patch) | |
tree | a0c89cd73a3b1c518d148b0a520717deddacd82e /synapse/app | |
parent | synapse/app/homeserver.py:GzipFile was unused (diff) | |
download | synapse-7a5818ed811c6da046e60bcc7eacb7a28a92cd73.tar.xz |
Note that GzipFile was removed in comment that referenced it
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 349a4c1774..190b03e2f7 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -128,6 +128,7 @@ class SynapseHomeServer(HomeServer): # (It can stay enabled for the API resources: they call # write() with the whole body and then finish() straight # after and so do not trigger the bug. + # GzipFile was removed in commit 184ba09 # return GzipFile(webclient_path) # TODO configurable? return File(webclient_path) # TODO configurable? |