Merge "Increase connection timeouts for Redis" into stable/train

This commit is contained in:
Zuul 2022-05-04 19:12:35 +00:00 committed by Gerrit Code Review
commit bcc9a104b1
1 changed files with 5 additions and 3 deletions

View File

@ -1582,9 +1582,11 @@ class tripleo::haproxy (
haproxy::listen { 'redis':
bind => $redis_bind_opts,
options => {
'balance' => 'first',
'option' => [ 'tcp-check', 'tcplog', ],
'tcp-check' => $redis_tcp_check_options,
'balance' => 'first',
'timeout client' => '90m',
'timeout server' => '90m',
'option' => [ 'tcp-check', 'tcplog', ],
'tcp-check' => $redis_tcp_check_options,
},
collect_exported => false,
}