From 00292353a1ad6de45efaee13556f73020393e71f Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Wed, 9 Jan 2019 15:05:10 +0100 Subject: [PATCH] MINOR: spoe: Make the SPOE filter compatible with HTX proxies There is any specific HTTP processing in the SPOE. So there is no reason to not use it on HTX proxies. This patch may be backported to 1.9. --- src/flt_spoe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/flt_spoe.c b/src/flt_spoe.c index bd351be18..4cf9237fb 100644 --- a/src/flt_spoe.c +++ b/src/flt_spoe.c @@ -2998,6 +2998,7 @@ spoe_init(struct proxy *px, struct flt_conf *fconf) sighandler_registered = 1; } + fconf->flags |= FLT_CFG_FL_HTX; return 0; }