Skip to content

Commit 101ab9d

Browse files
added a note explaining why routerKeyFn was added
1 parent 7c42b7e commit 101ab9d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkg/router/controller/factory/factory.go

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ func NewDefaultRouterControllerFactory(oc osclient.RoutesNamespacer, kc kclients
5757
}
5858
}
5959

60+
// routerKeyFn comes from MetaNamespaceKeyFunc in vendor/k8s.io/kubernetes/pkg/client/cache/store.go.
61+
// It was modified and added here because there is no way to know if an ExplicitKey was passed before
62+
// adding the UID to prevent an invalid state transistion if deletions and adds happen quickly.
6063
func routerKeyFn(obj interface{}) (string, error) {
6164
if key, ok := obj.(cache.ExplicitKey); ok {
6265
return string(key), nil

0 commit comments

Comments
 (0)