mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-22 14:49:45 -04:00
BUG/MINOR: fix missing "'option httpslog' overrides previous 'option tcplog clf'..." detection
Same as b85edd44db0 ("BUG/MINOR: fix missing "log-format overrides
previous 'option tcplog clf'..." detection") but for "option httpslog"
keyword.
No backport needed unless fd48b28 ("MINOR: Implements new log format of
option tcplog clf") is.
This commit is contained in:
parent
607b9adc9b
commit
bc4bf5779f
1 changed files with 2 additions and 0 deletions
|
|
@ -2208,6 +2208,8 @@ stats_error_parsing:
|
|||
oldlogformat = "option httplog";
|
||||
else if (curproxy->logformat.str == default_tcp_log_format)
|
||||
oldlogformat = "option tcplog";
|
||||
else if (curproxy->logformat.str == clf_tcp_log_format)
|
||||
oldlogformat = "option tcplog clf";
|
||||
else if (curproxy->logformat.str == clf_http_log_format)
|
||||
oldlogformat = "option httplog clf";
|
||||
else if (curproxy->logformat.str == default_https_log_format)
|
||||
|
|
|
|||
Loading…
Reference in a new issue