From c78647926802727f28afd7307fb5d0531b8c234c Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 28 Sep 2009 08:59:34 +0900 Subject: [PATCH] timeout @ 60 --- anki/deck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/deck.py b/anki/deck.py index 7ce5981ee..1b5958884 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -2809,7 +2809,7 @@ class DeckStorage(object): # no pool & concurrent access w/ timeout engine = create_engine(path, poolclass=NullPool, - connect_args={'timeout': 30}) + connect_args={'timeout': 60}) session = sessionmaker(bind=engine, autoflush=False, autocommit=True)