From 78f7614987346125676cdbe25dba61184377f954 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 18 Oct 2011 00:48:46 -0500 Subject: [PATCH] Module: it's come to this. bump the default sqlite connection timeout to 60 sec --- Module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module.py b/Module.py index 191b618..acddea9 100644 --- a/Module.py +++ b/Module.py @@ -174,7 +174,7 @@ class Module(object): """ dbfile = self.config.get('dr.botzo', 'database') - conn = sqlite3.connect(dbfile, 30) + conn = sqlite3.connect(dbfile, 60) conn.row_factory = sqlite3.Row # setup regexp function in sqlite