Remove log lines
This commit is contained in:
parent
522c804f6b
commit
bcbd74dc5b
|
@ -128,11 +128,9 @@ class AppserviceServer(HomeServer):
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
logger.info("Hitting replication")
|
|
||||||
args = store.stream_positions()
|
args = store.stream_positions()
|
||||||
args["timeout"] = 30000
|
args["timeout"] = 30000
|
||||||
result = yield http_client.get_json(replication_url, args=args)
|
result = yield http_client.get_json(replication_url, args=args)
|
||||||
logger.info("Got replication response")
|
|
||||||
yield store.process_replication(result)
|
yield store.process_replication(result)
|
||||||
replicate(result)
|
replicate(result)
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in New Issue