blob: ce4e16fa67c65a4c2de9f42c22923b155aceb815 [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
Frédéric Lécailledc1a3bd2019-03-29 15:07:24 +01008#REGTEST_TYPE=bug
9
Frédéric Lécaille9b53b4c2018-06-20 07:26:44 +020010varnishtest "SPOE bug: missing configuration file"
11
Frédéric Lécaillefe5463e2018-08-21 15:29:24 +020012feature ignore_unknown_macro
13
Frédéric Lécaille9b53b4c2018-06-20 07:26:44 +020014haproxy h1 -conf-BAD {} {
15 defaults
16 timeout connect 5000ms
17 timeout client 50000ms
18 timeout server 50000ms
19
20 frontend my-front
21 filter spoe
22}