diff options
| author | Chris McDonough <chrism@plope.com> | 2011-08-09 12:53:33 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-08-09 12:53:33 -0400 |
| commit | 0db92c11a3ae39cd399ef9da6a8d25d48f35881c (patch) | |
| tree | 40db6bc636fd9868a389aefa37f445548bd65a11 | |
| parent | 5a87a84b528221f156d84ac1ab71c618ccb010c8 (diff) | |
| download | pyramid-0db92c11a3ae39cd399ef9da6a8d25d48f35881c.tar.gz pyramid-0db92c11a3ae39cd399ef9da6a8d25d48f35881c.tar.bz2 pyramid-0db92c11a3ae39cd399ef9da6a8d25d48f35881c.zip | |
set attempts to 3 explicitly in zodb apps
| -rw-r--r-- | pyramid/scaffolds/zodb/development.ini_tmpl | 1 | ||||
| -rw-r--r-- | pyramid/scaffolds/zodb/production.ini_tmpl | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/pyramid/scaffolds/zodb/development.ini_tmpl b/pyramid/scaffolds/zodb/development.ini_tmpl index d2d96bc05..0ff1a8fb8 100644 --- a/pyramid/scaffolds/zodb/development.ini_tmpl +++ b/pyramid/scaffolds/zodb/development.ini_tmpl @@ -9,6 +9,7 @@ pyramid.debug_templates = true pyramid.default_locale_name = en pyramid.include = pyramid_debugtoolbar pyramid_tm +pyramid_tm.attempts = 3 zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000 diff --git a/pyramid/scaffolds/zodb/production.ini_tmpl b/pyramid/scaffolds/zodb/production.ini_tmpl index bb88c535d..76a406eb1 100644 --- a/pyramid/scaffolds/zodb/production.ini_tmpl +++ b/pyramid/scaffolds/zodb/production.ini_tmpl @@ -8,6 +8,7 @@ pyramid.debug_routematch = false pyramid.debug_templates = false pyramid.default_locale_name = en pyramid.include = pyramid_tm +pyramid_tm.attempts = 3 zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000 |
