Skip to content

Commit c2c7b2f

Browse files
author
Ravi Sankar Penta
committed
Fix router FilterNamespaces()
Colon instead of underscore is used to uniquely identify ServiceAliasConfig(route for a service).
1 parent 592a4cb commit c2c7b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/router/template/router.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ func (r *templateRouter) FilterNamespaces(namespaces sets.String) {
581581
}
582582

583583
for k := range r.state {
584-
ns := strings.SplitN(k, "_", 2)[0]
584+
ns := strings.SplitN(k, ":", 2)[0]
585585
if namespaces.Has(ns) {
586586
continue
587587
}

0 commit comments

Comments
 (0)