mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 15:25:57 +00:00
stdin should be a bool, not a byte stream
This commit is contained in:
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
Block a user