diff --git a/manifests/agent/notification.pp b/manifests/agent/notification.pp index 50c9f35c..01b230cc 100644 --- a/manifests/agent/notification.pp +++ b/manifests/agent/notification.pp @@ -73,12 +73,6 @@ # Defaults to ['gnocchi://'], If you are using collector # override this to notifier:// instead. # -# === DEPRECATED PARAMETERS: -# [*store_events*] -# (Optional) Save event details. -# This option has been removed since Newton. -# - class ceilometer::agent::notification ( $manage_service = true, $enabled = true, @@ -91,16 +85,11 @@ class ceilometer::agent::notification ( $event_pipeline_publishers = ['gnocchi://'], $manage_pipeline = false, $pipeline_publishers = ['gnocchi://'], - $store_events = undef, ) { include ::ceilometer::deps include ::ceilometer::params - if $store_events != undef { - warning('store_events has been removed since Newton.') - } - ensure_resource('package', [$::ceilometer::params::agent_notification_package_name], { ensure => $package_ensure, @@ -157,7 +146,6 @@ class ceilometer::agent::notification ( ceilometer_config { 'notification/ack_on_event_error' : value => $ack_on_event_error; - 'notification/store_events' : value => $store_events; 'notification/disable_non_metric_meters': value => $disable_non_metric_meters; 'notification/workers' : value => $notification_workers; 'notification/messaging_urls' : value => $messaging_urls, secret => true; diff --git a/releasenotes/notes/remove_store_events-18a34502fe2387d1.yaml b/releasenotes/notes/remove_store_events-18a34502fe2387d1.yaml new file mode 100644 index 00000000..f0d7a077 --- /dev/null +++ b/releasenotes/notes/remove_store_events-18a34502fe2387d1.yaml @@ -0,0 +1,3 @@ +--- +other: + - removed deprecated ceilometer::agent::notification::store_events.