client: Disable the SqliteQueue database for now.

This commit is contained in:
Damir Jelić 2019-07-26 12:46:05 +02:00
parent 5c3753a6e1
commit f570a74b52

View File

@ -152,7 +152,7 @@ class PanClient(AsyncClient):
proxy=None,
store_class=None,
):
config = config or ClientConfig(store=store_class or SqliteQStore, store_name="pan.db")
config = config or ClientConfig(store=store_class or SqliteStore, store_name="pan.db")
super().__init__(homeserver, user_id, device_id, store_path, config, ssl, proxy)
index_dir = os.path.join(store_path, server_name, user_id)