summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oslo_db/options.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/oslo_db/options.py b/oslo_db/options.py
index 7742686..a02dad5 100644
--- a/oslo_db/options.py
+++ b/oslo_db/options.py
@@ -69,12 +69,13 @@ database_opts = [
help='Minimum number of SQL connections to keep open in a '
'pool.'),
cfg.IntOpt('max_pool_size',
+ default=5,
deprecated_opts=[cfg.DeprecatedOpt('sql_max_pool_size',
group='DEFAULT'),
cfg.DeprecatedOpt('sql_max_pool_size',
group='DATABASE')],
help='Maximum number of SQL connections to keep open in a '
- 'pool.'),
+ 'pool. Setting a value of 0 indicates no limit.'),
cfg.IntOpt('max_retries',
default=10,
deprecated_opts=[cfg.DeprecatedOpt('sql_max_retries',
@@ -164,13 +165,12 @@ def set_defaults(conf, connection=None, sqlite_db=None,
:type sqlite_db: str
:keyword max_pool_size: maximum connections pool size. The size of the pool
- to be maintained, defaults to 5, will be used if value of the parameter is
- `None`. This is the largest number of connections that will be kept
- persistently in the pool. Note that the pool begins with no connections;
- once this number of connections is requested, that number of connections
- will remain.
+ to be maintained, defaults to 5. This is the largest number of connections
+ that will be kept persistently in the pool. Note that the pool begins with
+ no connections; once this number of connections is requested, that number
+ of connections will remain.
:type max_pool_size: int
- :default max_pool_size: None
+ :default max_pool_size: 5
:keyword max_overflow: The maximum overflow size of the pool. When the
number of checked-out connections reaches the size set in pool_size,