mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-15 14:14:39 +00:00
stdin should be a bool, not a byte stream
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user