From 09c3185a231530f63c18c0c9283e6fc1d0b3d1ce Mon Sep 17 00:00:00 2001 From: Netanel Bollag <54136032+NetanelBollag@users.noreply.github.com> Date: Sun, 14 May 2023 15:06:47 +0300 Subject: [PATCH] Ignore unknown value in request path (#104) --- src/exp/istio-watcher/pkg/watcher/watcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exp/istio-watcher/pkg/watcher/watcher.go b/src/exp/istio-watcher/pkg/watcher/watcher.go index 74603e0d..28569fde 100644 --- a/src/exp/istio-watcher/pkg/watcher/watcher.go +++ b/src/exp/istio-watcher/pkg/watcher/watcher.go @@ -80,7 +80,7 @@ func (p *ConnectionWithPath) hasMissingInfo() bool { } } - return p.RequestPath == "" + return p.RequestPath == "" || p.RequestPath == "unknown" } type EnvoyMetrics struct {