This commit is contained in:
Daniel A 2024-04-22 12:29:08 -07:00 committed by GitHub
commit a16ed893b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 16 deletions

View file

@ -463,13 +463,6 @@ func (client dockerClient) ExecuteCommand(containerID t.ContainerID, command str
clog.Errorf("Failed to extract command exec logs: %v", attachErr) clog.Errorf("Failed to extract command exec logs: %v", attachErr)
} }
// Run the exec
execStartCheck := types.ExecStartCheck{Detach: false, Tty: true}
err = client.api.ContainerExecStart(bg, exec.ID, execStartCheck)
if err != nil {
return false, err
}
var output string var output string
if attachErr == nil { if attachErr == nil {
defer response.Close() defer response.Close()

View file

@ -282,15 +282,6 @@ var _ = Describe("the client", func() {
}), }),
ghttp.RespondWithJSONEncoded(http.StatusOK, types.IDResponse{ID: execID}), ghttp.RespondWithJSONEncoded(http.StatusOK, types.IDResponse{ID: execID}),
), ),
// API.ContainerExecStart
ghttp.CombineHandlers(
ghttp.VerifyRequest("POST", HaveSuffix("exec/%v/start", execID)),
ghttp.VerifyJSONRepresenting(types.ExecStartCheck{
Detach: false,
Tty: true,
}),
ghttp.RespondWith(http.StatusOK, nil),
),
// API.ContainerExecInspect // API.ContainerExecInspect
ghttp.CombineHandlers( ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", HaveSuffix("exec/ex-exec-id/json")), ghttp.VerifyRequest("GET", HaveSuffix("exec/ex-exec-id/json")),