From 0b4ef900ebf989434d530a7b8daa419fa0954d2a Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 24 May 2021 11:46:36 -0700 Subject: [PATCH] Remove temp UI sleep fixes --- builtin/docker/platform.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/builtin/docker/platform.go b/builtin/docker/platform.go index ed4730ad865..849514c6e2d 100644 --- a/builtin/docker/platform.go +++ b/builtin/docker/platform.go @@ -7,7 +7,6 @@ import ( "path/filepath" "strconv" "strings" - "time" "github.com/docker/docker/api/types" "github.com/docker/docker/api/types/container" @@ -209,9 +208,6 @@ func (p *Platform) Status( result.TimeGenerated = ptypes.TimestampNow() log.Debug("status report complete") - // TODO(briancain): remove me GH #1469 - time.Sleep(500 * time.Millisecond) - // update output based on main health state s.Update("Finished building report for Docker platform") s.Done() @@ -228,9 +224,6 @@ func (p *Platform) Status( st.Step(terminal.StatusError, fmt.Sprintf("Container %q is reporting not ready!", containerInfo.Name)) } - // TODO(briancain): remove me GH #1469 - time.Sleep(500 * time.Millisecond) - return &result, nil }