From 5207feebd4c016e21c3a8926db2832d549c774a4 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Thu, 13 Mar 2025 14:08:48 +0100 Subject: [PATCH] pkg/domain/infra/abi/play.go: fix one comment It did start there, as pointed out by Ygal on #25481. Signed-off-by: Paul Holzinger --- pkg/domain/infra/abi/play.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/domain/infra/abi/play.go b/pkg/domain/infra/abi/play.go index 6ffbf4cf54..12558cbdb7 100644 --- a/pkg/domain/infra/abi/play.go +++ b/pkg/domain/infra/abi/play.go @@ -287,7 +287,7 @@ func (ic *ContainerEngine) PlayKube(ctx context.Context, body io.Reader, options setRanContainers := func(r *entities.PlayKubeReport) { if !ranContainers { for _, p := range r.Pods { - // If the list of container errors is less then the total number of pod containers then we know it didn't start. + // If the list of container errors is less then the total number of pod containers then we know it did start. if len(p.ContainerErrors) < len(p.Containers)+len(p.InitContainers) { ranContainers = true break