From d694a72e05a3215e80bd1a6339d87d9e37938ecd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Charlier?= Date: Mon, 5 May 2014 11:38:07 +0200 Subject: [PATCH] lb: please rake test --- manifests/loadbalancer.pp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp index 9e539c4b..835420eb 100644 --- a/manifests/loadbalancer.pp +++ b/manifests/loadbalancer.pp @@ -360,10 +360,12 @@ class cloud::loadbalancer( $horizon_auth_url = 'horizon' } cloud::loadbalancer::listen_http{ 'horizon_cluster': - ports => $horizon_port, - httpchk => "httpchk GET /$horizon_auth_url HTTP/1.0\r\nUser-Agent:\ HAproxy-${::hostname}", - options => { 'cookie' => 'sessionid prefix', 'balance' => 'leastconn' }, - listen_ip => $vip_public_ip; + ports => $horizon_port, + httpchk => "httpchk GET /${horizon_auth_url} \"HTTP/1.0\r\nUser-Agent: HAproxy-${::hostname}\"", + options => { + 'cookie' => 'sessionid prefix', + 'balance' => 'leastconn' }, + listen_ip => $vip_public_ip; } } }