blob: 76b41d60bbf2f8c37ae87b2c9211c570328bbd4e [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
Frédéric Lécaillefe5463e2018-08-21 15:29:24 +020010feature ignore_unknown_macro
11
Frédéric Lécaille9b53b4c2018-06-20 07:26:44 +020012haproxy h1 -conf-BAD {} {
13 defaults
14 timeout connect 5000ms
15 timeout client 50000ms
16 timeout server 50000ms
17
18 frontend my-front
19 filter spoe
20}