0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 18:28:56 +02:00

Remove log lines

This commit is contained in:
Erik Johnston 2016-08-18 15:52:10 +01:00
parent 522c804f6b
commit bcbd74dc5b

View file

@ -128,11 +128,9 @@ class AppserviceServer(HomeServer):
while True:
try:
logger.info("Hitting replication")
args = store.stream_positions()
args["timeout"] = 30000
result = yield http_client.get_json(replication_url, args=args)
logger.info("Got replication response")
yield store.process_replication(result)
replicate(result)
except: