Merge "Remove [cache] enforce_fips_mode"

This commit is contained in:
Zuul
2026-03-09 20:25:24 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 25 deletions

View File

@@ -411,31 +411,6 @@ FILE_OPTIONS = {
'back in the pool in the HashClient\'s internal mechanisms.'
),
),
cfg.BoolOpt(
'enforce_fips_mode',
default=False,
deprecated_for_removal=True,
deprecated_reason=(
'FIPS_mode_set API was removed in OpenSSL 3.0.0. '
'This option has no effect now.'
),
help=(
'Global toggle for enforcing the OpenSSL FIPS mode. '
'This feature requires Python support. '
'This is available in Python 3.9 in all '
'environments and may have been backported to older '
'Python versions on select environments. If the Python '
'executable used does not support OpenSSL FIPS mode, '
'an exception will be raised. '
+ _supported_backends_msg(
[
'dogpile.cache.bmemcache',
'dogpile.cache.pymemcache',
'oslo_cache.memcache_pool',
]
)
),
),
],
}

View File

@@ -0,0 +1,4 @@
---
upgrade:
- |
The deprecated ``[cache] enforce_fips_mode`` option has been removed.