diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-08-20 09:35:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-08-20 09:35:48 +0200 |
commit | 591e8b4962f6cfc394e1b18c6a43dfc5783ffb52 (patch) | |
tree | a0cae901b3c4e4272a0cf9c0b8188aafa6d8a18a | |
parent | 6613ef8c03964ea1c581beb31beb8af08b125a7a (diff) | |
download | jenkins.debian.net-591e8b4962f6cfc394e1b18c6a43dfc5783ffb52.tar.xz |
reproducible debian: raise the timeout to 60s
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 1f31d736..c472d365 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -95,7 +95,7 @@ with open(os.path.join(BIN_PATH, './meta_pkgset.csv'), newline='') as f: META_PKGSET[int(line[0])] = (line[2], line[1]) # init the database data and connection -DB_ENGINE = create_engine("sqlite:///" + REPRODUCIBLE_DB, connect_args={'timeout': 30}) +DB_ENGINE = create_engine("sqlite:///" + REPRODUCIBLE_DB, connect_args={'timeout': 60}) DB_METADATA = MetaData(DB_ENGINE) # Get all table definitions conn_db = DB_ENGINE.connect() # the local sqlite3 reproducible db |