Frédéric Lécaille | 9b53b4c | 2018-06-20 07:26:44 +0200 | [diff] [blame] | 1 | # 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 | |
| 8 | varnishtest "SPOE bug: missing configuration file" |
| 9 | |
Frédéric Lécaille | fe5463e | 2018-08-21 15:29:24 +0200 | [diff] [blame] | 10 | feature ignore_unknown_macro |
| 11 | |
Frédéric Lécaille | 9b53b4c | 2018-06-20 07:26:44 +0200 | [diff] [blame] | 12 | haproxy 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 | } |