From 1028b04d9c29b0928e6d499a426c5cec5d54b72b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 22 Sep 2009 18:35:31 +0900 Subject: [PATCH] default timeout of 90 seconds --- anki/deck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/deck.py b/anki/deck.py index 32404e5a3..7cf756a46 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -2804,7 +2804,7 @@ class DeckStorage(object): else: engine = create_engine(path, poolclass=NullPool, - connect_args={'timeout': 30}) + connect_args={'timeout': 90}) session = sessionmaker(bind=engine, autoflush=False, autocommit=True)