mirror of https://github.com/k3s-io/k3s
stdin should be a bool, not a byte stream
parent
be7834dc4a
commit
21564aafed
|
@ -607,7 +607,7 @@ message ExecRequest {
|
|||
// Whether use tty
|
||||
optional bool tty = 3;
|
||||
// Streaming stdin
|
||||
optional bytes stdin = 4;
|
||||
optional bool stdin = 4;
|
||||
}
|
||||
|
||||
message ExecResponse {
|
||||
|
@ -619,7 +619,7 @@ message AttachRequest {
|
|||
// The id of the container
|
||||
optional string container_id = 1;
|
||||
// Streaming stdin
|
||||
optional bytes stdin = 2;
|
||||
optional string stdin = 2;
|
||||
}
|
||||
|
||||
message AttachResponse {
|
||||
|
|
Loading…
Reference in New Issue