Merge "change the default sql connection timeout to 60s"

This commit is contained in:
Jenkins 2012-10-13 02:54:27 +00:00 committed by Gerrit Code Review
commit 3758b19ca2

View File

@ -51,7 +51,7 @@ STATUSES = ['active', 'saving', 'queued', 'killed', 'pending_delete',
db_opts = [
cfg.IntOpt('sql_idle_timeout', default=3600),
cfg.IntOpt('sql_max_retries', default=10),
cfg.IntOpt('sql_max_retries', default=60),
cfg.IntOpt('sql_retry_interval', default=1),
cfg.BoolOpt('db_auto_create', default=False),
]