stdin should be a bool, not a byte stream

pull/6/head
Tim St. Clair 2016-10-18 17:17:05 -07:00
parent be7834dc4a
commit 21564aafed
No known key found for this signature in database
GPG Key ID: 434D16BCEF479EAB
1 changed files with 2 additions and 2 deletions

View File

@ -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 {