db: Remove min_pool_size

... because it was deprecated during Ussuri cycle[1].

[1] 1338b26b02

Change-Id: I86ff6b35b7e2ea29799ff98d734b7e9b4b2e0f08
This commit is contained in:
Takashi Kajinami 2022-05-18 13:40:53 +09:00
parent 61b3426457
commit 0a7cc71dad
2 changed files with 4 additions and 9 deletions

View File

@ -109,10 +109,6 @@
#
# DEPRECATED PARAMETERS
#
# [*min_pool_size*]
# (Optional) Minimum number of SQL connections to keep open in a pool.
# Defaults to undef
#
# [*use_tpool*]
# (Optional) Enable the experimental use of thread pooling for all DB API calls (boolean value)
# Defaults to undef
@ -142,7 +138,6 @@ define oslo::db(
$db_max_retries = $::os_service_default,
$mysql_enable_ndb = $::os_service_default,
# DEPRCATED PARAMETERS
$min_pool_size = undef,
$use_tpool = undef,
) {
@ -189,10 +184,6 @@ define oslo::db(
}
}
if $min_pool_size {
warning('The min_pool_size parameter is deprecated, and will be removed in a future release.')
}
if $use_tpool != undef {
warning('The use_tpool parameter is deprecated and will be removed in a future release.')
}

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
The ``oslo::db::min_pool_size`` parameter has been removed.