diff options
| author | Mark McLoughlin <markmc@redhat.com> | 2012-05-03 21:14:53 +0100 |
|---|---|---|
| committer | Mark McLoughlin <markmc@redhat.com> | 2012-05-03 21:14:53 +0100 |
| commit | 9b5d9ad8ddc2f1bf652e55102a4db67c71f8515f (patch) | |
| tree | 9c05c2a6c406a8a67e312ce7f64152fa1cf7aa8a | |
| parent | 749dc34e605013a0dc136c5de9065dad20c4a9ff (diff) | |
Set defaults for sql options
Avoid relying on the options being set in the config file.
Change-Id: I01db140ac757325a80f493b732064fa0f437df23
| -rw-r--r-- | keystone/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/config.py b/keystone/config.py index 234b9616..cb931a8e 100644 --- a/keystone/config.py +++ b/keystone/config.py @@ -146,8 +146,8 @@ register_str('public_port', default=5000) # sql options -register_str('connection', group='sql') -register_int('idle_timeout', group='sql') +register_str('connection', group='sql', default='sqlite:///keystone.db') +register_int('idle_timeout', group='sql', default=200) register_str('driver', group='catalog', |
