We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ada884e + 3119c22 commit 3137709Copy full SHA for 3137709
util/src/main/java/io/kubernetes/client/informer/cache/Lister.java
@@ -36,7 +36,7 @@ public List<ApiType> list() {
36
37
public ApiType get(String name) {
38
String key = name;
39
- if (Strings.isNullOrEmpty(namespace)) {
+ if (!Strings.isNullOrEmpty(namespace)) {
40
key = namespace + "/" + name;
41
}
42
return indexer.getByKey(key);
0 commit comments