From 23ab0db5816a410c0e57f664592e47204da9ad1a Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Tue, 24 Dec 2019 11:46:56 +0100 Subject: [PATCH] added namespace flag to HTTP struct --- pkg/config/config.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 8067a011d..c92c9820c 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -17,8 +17,9 @@ type Debug struct { // HTTP defines the available http configuration. type HTTP struct { - Addr string - Root string + Addr string + Namespace string + Root string } // Tracing defines the available tracing configuration.