Fix redis coordination url
authorPradeep Kilambi <pkilambi@redhat.com>
Tue, 22 Mar 2016 16:03:49 +0000 (12:03 -0400)
committerPradeep Kilambi <pkilambi@redhat.com>
Tue, 22 Mar 2016 17:43:25 +0000 (13:43 -0400)
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

puppet/controller.yaml

index bdb124c..906e35c 100644 (file)
@@ -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:
             - ''