From c53c5424e2fe4895ee9de1789e65b539169b8a43 Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Wed, 7 Feb 2018 14:15:37 +0800 Subject: [PATCH] Remove store_events option Change-Id: I31e8c17a011320cacd3a6f9480452886f8df714b --- manifests/agent/notification.pp | 12 ------------ .../notes/remove_store_events-18a34502fe2387d1.yaml | 3 +++ 2 files changed, 3 insertions(+), 12 deletions(-) create mode 100644 releasenotes/notes/remove_store_events-18a34502fe2387d1.yaml diff --git a/manifests/agent/notification.pp b/manifests/agent/notification.pp index 50c9f35..01b230c 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 0000000..f0d7a07 --- /dev/null +++ b/releasenotes/notes/remove_store_events-18a34502fe2387d1.yaml @@ -0,0 +1,3 @@ +--- +other: + - removed deprecated ceilometer::agent::notification::store_events. -- 2.45.2