Skip to content

Commit

Permalink
Ignore unknown value in request path (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBollag authored May 14, 2023
1 parent ae3d762 commit 09c3185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exp/istio-watcher/pkg/watcher/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (p *ConnectionWithPath) hasMissingInfo() bool {
}
}

return p.RequestPath == ""
return p.RequestPath == "" || p.RequestPath == "unknown"
}

type EnvoyMetrics struct {
Expand Down

0 comments on commit 09c3185

Please sign in to comment.