diff --git a/manifests/init.pp b/manifests/init.pp index 1e1bcd9..7e297f6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -291,12 +291,6 @@ # in the watcher config. # Defaults to false. # -# DEPRECATED PARAMETERS -# -# [*rabbit_max_retries*] -# (Optional) Maximum number of RabbitMQ connection retries. (integer value) -# Defaults to undef -# # === Authors # # Daniel Pawlik @@ -367,8 +361,6 @@ class watcher ( $notification_transport_url = $::os_service_default, $notification_driver = $::os_service_default, $notification_topics = $::os_service_default, - # DEPRECATED PARAMETERS - $rabbit_max_retries = undef, ) { include ::openstacklib::openstackclient @@ -379,10 +371,6 @@ class watcher ( include ::watcher::db include ::watcher::logging - if $rabbit_max_retries { - warning('The rabbit_max_retries parameter has been deprecated and will be removed in the future release.') - } - package { 'watcher': ensure => $package_ensure, name => $::watcher::params::common_package_name, diff --git a/releasenotes/notes/remove_deprecated_rabbit_max_retries_option-886e2102ff813c90.yaml b/releasenotes/notes/remove_deprecated_rabbit_max_retries_option-886e2102ff813c90.yaml new file mode 100644 index 0000000..ce40c6f --- /dev/null +++ b/releasenotes/notes/remove_deprecated_rabbit_max_retries_option-886e2102ff813c90.yaml @@ -0,0 +1,3 @@ +--- +upgrade: + - Deprecated watcher::rabbit_max_retries option has been removed.