Set client max timeout retry wait time to 10s

This commit is contained in:
miruka 2019-08-19 10:31:53 -04:00
parent 165c1b797e
commit d1eec2ee6b

View File

@ -45,6 +45,9 @@ class MatrixClient(nio.AsyncClient):
user = user, user = user,
device_id = device_id, device_id = device_id,
store_path = store, store_path = store,
config = nio.AsyncClientConfig(
max_timeout_retry_wait_time = 10,
),
) )
from .backend import Backend from .backend import Backend