fix: prevent flickering prompt when pulling same image from N services

Signed-off-by: Maxime CLEMENT <maxime.clement@docker.com>
This commit is contained in:
Maxime CLEMENT 2022-05-18 08:54:25 +02:00
parent 7e3564b7ad
commit 48b150beff
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,10 @@ func (w *ttyWriter) Event(e Event) {
last.Status = e.Status
last.Text = e.Text
last.StatusText = e.StatusText
// allow set/unset of parent, but not swapping otherwise prompt is flickering
if last.ParentID == "" || e.ParentID == "" {
last.ParentID = e.ParentID
}
w.events[e.ID] = last
} else {
e.startTime = time.Now()