summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 9c52fbc2..e613799f 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -235,7 +235,7 @@ def write_html_page(title, body, destfile, suite=None, noheader=False, style_not
fd.write(html)
def start_db_connection():
- return sqlite3.connect(REPRODUCIBLE_DB)
+ return sqlite3.connect(REPRODUCIBLE_DB, timeout=60)
def query_db(query):
cursor = conn_db.cursor()