Skip to content

Commit

Permalink
Fix deadlock
Browse files Browse the repository at this point in the history
Signed-off-by: Matej Vašek <mvasek@redhat.com>
  • Loading branch information
matejvasek committed Dec 20, 2024
1 parent 1122bf7 commit 1d253cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/update-builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func buildBuilderImage(ctx context.Context, variant, arch string) (string, error
}(rc)

pr, pw := io.Pipe()
digestCh := make(chan string)
digestCh := make(chan string, 1)
go func() {
var (
jm jsonmessage.JSONMessage
Expand Down

0 comments on commit 1d253cb

Please sign in to comment.