Remove quorum options with typo

These were deprecated during 2023.2 cycle and we even backported
the renaming to 2023.1 so that users can use the correct name. So
these are now ready for removal.

[1] 115cfb5b7c

Change-Id: I89eb7b34b0acf64dcff52af0cd45845e4dad4639
This commit is contained in:
Takashi Kajinami
2025-04-14 21:11:42 +09:00
parent 3a0b6cb981
commit 4bf39b36b3
2 changed files with 8 additions and 2 deletions

View File

@@ -195,7 +195,6 @@ rabbit_opts = [
'Used only when rabbit_quorum_queue is enabled, '
'Default 0 which means dont set a limit.'),
cfg.IntOpt('rabbit_quorum_max_memory_length',
deprecated_name='rabbit_quroum_max_memory_length',
default=0,
help='By default all messages are maintained in memory '
'if a quorum queue grows in length it can put memory '
@@ -204,7 +203,6 @@ rabbit_opts = [
'Used only when rabbit_quorum_queue is enabled, '
'Default 0 which means dont set a limit.'),
cfg.IntOpt('rabbit_quorum_max_memory_bytes',
deprecated_name='rabbit_quroum_max_memory_bytes',
default=0,
help='By default all messages are maintained in memory '
'if a quorum queue grows in length it can put memory '

View File

@@ -0,0 +1,8 @@
---
upgrade:
- |
The following options in ``[oslo_messaging_rabbit]`` secion have been
removed.
- ``rabbit_quroum_max_memory_length``
- ``rabbit_quroum_max_memory_bytes``