From f52384f854250ac759af75b570de1a830a14ab67 Mon Sep 17 00:00:00 2001 From: Joshua Hesketh Date: Sat, 15 Feb 2014 14:28:07 +1100 Subject: [PATCH] Fix changeid links in gerrit Previously the wrong regex substitution was used in changeid links. The replacement $1 refers to the first parentheses-enclosed match where the regex itself didn't have any parentheses. Instead use the entire match as a substitute in the link. Change-Id: I7c21bfbb575440396c75cb56a03a0573150ba411 --- modules/openstack_project/manifests/gerrit.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/gerrit.pp b/modules/openstack_project/manifests/gerrit.pp index 7ca745f335..0562bf3b09 100644 --- a/modules/openstack_project/manifests/gerrit.pp +++ b/modules/openstack_project/manifests/gerrit.pp @@ -161,7 +161,7 @@ class openstack_project::gerrit ( { name => 'changeid', match => 'I[0-9a-f]{8,40}', - link => '#q,$1,n,z', + link => '#q,$0,n,z', }, { name => 'gitsha',