Merge "Clean up sql connection args"
This commit is contained in:
commit
9c823977ba
@ -120,9 +120,6 @@ environment::
|
||||
[sql]
|
||||
connection = sqlite:///keystone.db
|
||||
idle_timeout = 200
|
||||
min_pool_size = 5
|
||||
max_pool_size = 10
|
||||
pool_timeout = 200
|
||||
|
||||
.. NOTE::
|
||||
|
||||
|
@ -19,9 +19,6 @@ use_syslog = False
|
||||
[sql]
|
||||
connection = sqlite:///keystone.db
|
||||
idle_timeout = 200
|
||||
min_pool_size = 5
|
||||
max_pool_size = 10
|
||||
pool_timeout = 200
|
||||
|
||||
[ldap]
|
||||
#url = ldap://localhost
|
||||
|
@ -147,10 +147,7 @@ register_str('public_port')
|
||||
|
||||
# sql options
|
||||
register_str('connection', group='sql')
|
||||
register_str('idle_timeout', group='sql')
|
||||
register_str('min_pool_size', group='sql')
|
||||
register_str('max_pool_size', group='sql')
|
||||
register_str('pool_timeout', group='sql')
|
||||
register_int('idle_timeout', group='sql')
|
||||
|
||||
|
||||
register_str('driver', group='catalog')
|
||||
|
@ -1,9 +1,6 @@
|
||||
[sql]
|
||||
connection = sqlite:///test.db
|
||||
idle_timeout = 200
|
||||
min_pool_size = 5
|
||||
max_pool_size = 10
|
||||
pool_timeout = 200
|
||||
|
||||
[identity]
|
||||
driver = keystone.identity.backends.sql.Identity
|
||||
|
Loading…
Reference in New Issue
Block a user