From d2acd0b3a793f84ec67852bcb54b7d41ce3d04f3 Mon Sep 17 00:00:00 2001 From: Miroslav Zagorac Date: Tue, 11 May 2021 19:21:54 +0200 Subject: [PATCH] BUILD/MINOR: opentracing: fixed compilation with filter enabled The inclusion of header files proxy.h and tools.h was added to the addons/ot/include/include.h file. Without this HAProxy cannot be compiled if the OpenTracing filter is to be used. --- addons/ot/include/include.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/ot/include/include.h b/addons/ot/include/include.h index 3c0d110945..f185a53b21 100644 --- a/addons/ot/include/include.h +++ b/addons/ot/include/include.h @@ -31,8 +31,10 @@ #include #include #include +#include #include #include +#include #include #include "config.h"