blob: b4ac877451704bae915df12ed50c2db748be0248 [file] [log] [blame]
Frédéric Lécaille9b53b4c2018-06-20 07:26:44 +02001# commit 84c844eb12b250aa86f2aadaff77c42dfc3cb619
2# BUG/MINOR: spoe: Initialize variables used during conf parsing before any check
3#
4# Some initializations must be done at the beginning of parse_spoe_flt to avoid
5# segmentaion fault when first errors are catched, when the "filter spoe" line is
6# parsed.
7
8varnishtest "SPOE bug: missing configuration file"
9
10haproxy h1 -conf-BAD {} {
11 defaults
12 timeout connect 5000ms
13 timeout client 50000ms
14 timeout server 50000ms
15
16 frontend my-front
17 filter spoe
18}