summaryrefslogtreecommitdiff
path: root/oslo_db/options.py
diff options
context:
space:
mode:
authorErik Olof Gunnar Andersson <eandersson@blizzard.com>2019-04-06 11:59:42 -0700
committerErik Olof Gunnar Andersson <eandersson@blizzard.com>2019-04-06 12:54:28 -0700
commit6cfdc11ea1ed7d8873f91683d6ea1be95fdff89e (patch)
tree509608ebf22413e80ebbd939afcd2f28c06ff626 /oslo_db/options.py
parent57333e902a3747715b2f13ea63477cc4aedc2129 (diff)
downloadoslo-db-6cfdc11ea1ed7d8873f91683d6ea1be95fdff89e.tar.gz
Removing deprecated min_pool_size
The database option min_pool_size is not actually used in oslo.db. This is a folllow up to Ib07b7b4200b5cf3a34b8eed441e6754da7d446cf Change-Id: I89754e9e4b42c45259729b0b0bb0a4bf464a981c
Diffstat (limited to 'oslo_db/options.py')
-rw-r--r--oslo_db/options.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/oslo_db/options.py b/oslo_db/options.py
index 58b4efd..ef13146 100644
--- a/oslo_db/options.py
+++ b/oslo_db/options.py
@@ -67,17 +67,6 @@ database_opts = [
'pool longer than this number of seconds will be replaced '
'with a new one the next time they are checked out from '
'the pool.'),
- cfg.IntOpt('min_pool_size',
- default=1,
- deprecated_opts=[cfg.DeprecatedOpt('sql_min_pool_size',
- group='DEFAULT'),
- cfg.DeprecatedOpt('sql_min_pool_size',
- group='DATABASE')],
- deprecated_for_removal=True,
- deprecated_reason='The option to set the minimum pool '
- 'size is not supported by sqlalchemy.',
- 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',