Skip to content

Commit 054ef9a

Browse files
authored
Update Exec.java
1 parent d5b8057 commit 054ef9a

File tree

1 file changed

+1
-1
lines changed
  • util/src/main/java/io/kubernetes/client

1 file changed

+1
-1
lines changed

util/src/main/java/io/kubernetes/client/Exec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public Process exec(V1Pod pod, String[] command, String container, boolean stdin
184184
public Process exec(
185185
String namespace, String name, String[] command, String container, boolean stdin, boolean tty)
186186
throws ApiException, IOException {
187-
return newExecutionBuilder(namespace, name, command)
187+
return new ExecutionBuilder(namespace, name, command)
188188
.setContainer(container)
189189
.setStdin(stdin)
190190
.setTty(tty)

0 commit comments

Comments
 (0)