diff options
author | Pradeep Kilambi <pkilambi@redhat.com> | 2016-03-22 12:03:49 -0400 |
---|---|---|
committer | Pradeep Kilambi <pkilambi@redhat.com> | 2016-03-22 13:43:25 -0400 |
commit | 042b485c342dc48521b0782b7945d8cfee11f1ca (patch) | |
tree | 8410f911b9a726f5ccfec36bbfddee8f7529cf8b /puppet | |
parent | 7ac441f019214e465a8e26fe03074b9ebd479034 (diff) |
Fix redis coordination url
The coordination url connection string to redis
is incorrectly formatted with password.
More details: https://bugzilla.redhat.com/show_bug.cgi?id=1320036
Change-Id: I93f5e93dfce4ba2629aa57534e8d33d5d1e6d77b
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/controller.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/puppet/controller.yaml b/puppet/controller.yaml index bdb124c6..906e35cf 100644 --- a/puppet/controller.yaml +++ b/puppet/controller.yaml @@ -1163,10 +1163,11 @@ resources: ceilometer_coordination_url: list_join: - '' - - - 'redis://' - - {get_param: RedisVirtualIPUri} - - ':6379/?password=' + - - 'redis://:' - {get_param: RedisPassword} + - '@' + - {get_param: RedisVirtualIPUri} + - ':6379/' ceilometer_dsn: list_join: - '' |