The notes are in reverse order

This commit is contained in:
lixiaobing10051267 2016-07-07 14:45:16 +08:00
parent 9075f53dca
commit 9915e89107

2
pkg/client/cache/store.go vendored Normal file → Executable file
View File

@ -99,7 +99,7 @@ func SplitMetaNamespaceKey(key string) (namespace, name string, err error) {
// name only, no namespace
return "", parts[0], nil
case 2:
// name and namespace
// namespace and name
return parts[0], parts[1], nil
}