diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-06-21 11:47:39 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-06-21 11:47:39 +0100 |
commit | 13e334506cf9093d2872ede95f1527c0c42d71fd (patch) | |
tree | d7b3997b2dcddbf2b2e4a0bfcac3da3379543a6e /synapse/app/homeserver.py | |
parent | Merge pull request #878 from matrix-org/erikj/ujson (diff) | |
download | synapse-13e334506cf9093d2872ede95f1527c0c42d71fd.tar.xz |
Remove the legacy v0 content upload API.
The existing content can still be downloaded. The last upload to the matrix.org server was in January 2015, so it is probably safe to remove the upload API.
Diffstat (limited to 'synapse/app/homeserver.py')
-rwxr-xr-x | synapse/app/homeserver.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 40ffd9bf0d..9c2dd32953 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -147,7 +147,7 @@ class SynapseHomeServer(HomeServer): MEDIA_PREFIX: media_repo, LEGACY_MEDIA_PREFIX: media_repo, CONTENT_REPO_PREFIX: ContentRepoResource( - self, self.config.uploads_path, self.auth, self.content_addr + self, self.config.uploads_path ), }) @@ -301,7 +301,6 @@ def setup(config_options): db_config=config.database_config, tls_server_context_factory=tls_server_context_factory, config=config, - content_addr=config.content_addr, version_string=version_string, database_engine=database_engine, ) |