Remove blank values in namespaces array.

The inline template is using compact which is not removing
the blank values. A call to delete function from stdlib is
needed to remove the blank values.

Change-Id: I7cf3ca383572d569a7e89431dcc39385605cf820
This commit is contained in:
Matthew J. Black 2016-09-23 19:27:04 -04:00
parent 6a94c7a8f7
commit 4e576d3f53
2 changed files with 4 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class ceilometer::agent::polling (
} }
} }
$namespaces = [$central_namespace_name, $compute_namespace_name, $ipmi_namespace_name] $namespaces = delete([$central_namespace_name, $compute_namespace_name, $ipmi_namespace_name], '')
$namespaces_real = inline_template('<%= @namespaces.select { |x| x and x !~ /^undef/ }.compact.join "," %>') $namespaces_real = inline_template('<%= @namespaces.select { |x| x and x !~ /^undef/ }.compact.join "," %>')
package { 'ceilometer-polling': package { 'ceilometer-polling':

View File

@ -0,0 +1,3 @@
---
issues:
- Delete blank values from ceilometer::agent::polling namespaces array.