From 86bd0f1d64c2ba961354f76eba972f9b5b0efefe Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Fri, 10 Jun 2016 15:37:47 -0400 Subject: [PATCH] Add build_newrev to the list of ignored keys A new run metadata key, build_newrev, started showing up in the db recently. [1] It's not actually something we want to expose, since it is unique for each job and not something we can group on. This commit adds it to the list of ignored keys so we don't have to see it anymore. [1] http://status.openstack.org/openstack-health/#/?groupKey=build_newrev Change-Id: Iea4a0babe10cd8d54a31e39dc5c3738570fda126 --- manifests/api.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/api.pp b/manifests/api.pp index 54a797b..cee2a7f 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -26,7 +26,8 @@ class openstack_health::api( $default_ignored_run_metadata_keys = ['build_change', 'build_node', 'build_patchset', 'build_ref', 'build_short_uuid', 'build_uuid', - 'build_zuul_url', 'filename'] + 'build_zuul_url', 'filename', + 'build_newrev'] if $ignored_run_metadata_keys { # In case it was defined, ensure the value provided is an array