Skip to content

Commit 55a5a75

Browse files
Merge pull request #184 from timothyjosefik/fix-readme-list-pod
Fixed listPodForAllNamespaces to follow along with the actual Example class
2 parents 997c088 + 30018db commit 55a5a75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class Example {
7373
Configuration.setDefaultApiClient(client);
7474

7575
CoreV1Api api = new CoreV1Api();
76-
V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null);
76+
V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
7777
for (V1Pod item : list.getItems()) {
7878
System.out.println(item.getMetadata().getName());
7979
}

0 commit comments

Comments
 (0)