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.
1 parent 3419b73 commit 1c26dfbCopy full SHA for 1c26dfb
extended/src/main/java/io/kubernetes/client/extended/kubectl/KubectlLog.java
@@ -37,7 +37,7 @@ public InputStream execute() throws KubectlException {
37
PodLogs logs = new PodLogs(apiClient);
38
String ns = (this.namespace == null ? "default" : this.namespace);
39
try {
40
- return logs.streamNamespacedPodLog(this.name, ns, this.container);
+ return logs.streamNamespacedPodLog(ns, this.name, this.container);
41
} catch (ApiException | IOException ex) {
42
throw new KubectlException(ex);
43
}
0 commit comments