-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Config
: add the hidden warnings.rabbitmq_version
option
This option can be used to suppress the warning that is emitted when a profile storage is loaded that is configured with a version of RabbitMQ that is known to be able to cause problems. The option is hidden because the warning is very important and should not easily be ignorable by normal users, but it is mostly intended for developers. The `check_rabbitmq_version` and `check_version` free functions are moved to `Manager` as methods which allows to use `get_option` instead of the `get_config_option` free function which is just an indirect way of calling `Manager.get_option`. The `is_rabbitmq_version_supported` function is also corrected. It was still using `< parse('3.8')` as a condition whereas it should be `< parse('3.8.15')` which was recently already changed for the `check_rabbitmq_version` function.
- Loading branch information
Showing
5 changed files
with
62 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters