Skip to content

Commit

Permalink
build: skip moby.buildkit.trace Aux message to be future proof
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Vass <[email protected]>
  • Loading branch information
Tibor Vass committed Jun 9, 2018
1 parent 6d8ad78 commit 9939444
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cli/command/image/build_buildkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ func newTracer() *tracer {
func (t *tracer) write(msg jsonmessage.JSONMessage) {
var resp controlapi.StatusResponse

if msg.ID != "moby.buildkit.trace" {
return
}

var dt []byte
if err := json.Unmarshal(*msg.Aux, &dt); err != nil {
return
Expand Down

0 comments on commit 9939444

Please sign in to comment.