summary refs log tree commit diff
path: root/synapse/storage/schema/delta/30/as_users.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-06-02 11:28:22 +0100
committerMark Haines <mark.haines@matrix.org>2016-06-02 11:28:22 +0100
commitb161fae8646566c1d86c21f43f4514c047f8f8ad (patch)
tree09248d95045d6e6f7ab3b0729d00584720089646 /synapse/storage/schema/delta/30/as_users.py
parentStub out the AS handler (diff)
parentAdd an http endpoint for making users as syncing (diff)
downloadsynapse-b161fae8646566c1d86c21f43f4514c047f8f8ad.tar.xz
Merge branch 'markjh/external_presence' into markjh/synchrotron
Diffstat (limited to 'synapse/storage/schema/delta/30/as_users.py')
-rw-r--r--synapse/storage/schema/delta/30/as_users.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/schema/delta/30/as_users.py b/synapse/storage/schema/delta/30/as_users.py

index b417e3ac08..5b7d8d1ab5 100644 --- a/synapse/storage/schema/delta/30/as_users.py +++ b/synapse/storage/schema/delta/30/as_users.py
@@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. import logging -from synapse.storage.appservice import ApplicationServiceStore +from synapse.config.appservice import load_appservices logger = logging.getLogger(__name__) @@ -38,7 +38,7 @@ def run_upgrade(cur, database_engine, config, *args, **kwargs): logger.warning("Could not get app_service_config_files from config") pass - appservices = ApplicationServiceStore.load_appservices( + appservices = load_appservices( config.server_name, config_files )