bin/handler-opsgenie.rb in sensu-plugins-opsgenie-4.1.1 vs bin/handler-opsgenie.rb in sensu-plugins-opsgenie-4.1.2

- old
+ new

@@ -118,10 +118,10 @@ teams: json_config['teams']) end def tags tags = [] - tags << json_config['tags'] if json_config['tags'] + tags += json_config['tags'] if json_config['tags'] tags << 'OverwriteQuietHours' if event_status == 2 && json_config['overwrite_quiet_hours'] == true tags << 'unknown' if event_status >= 3 tags << 'critical' if event_status == 2 tags << 'warning' if event_status == 1 event_tags.each { |tag, value| tags << "#{tag}_#{value}" } unless event_tags.nil?