Skip to content

Commit

Permalink
Merge pull request #1665 from jokemanfire/dev2
Browse files Browse the repository at this point in the history
No need for overly strict criteria for judgment
  • Loading branch information
k8s-ci-robot authored Nov 5, 2024
2 parents 260c9a2 + b91c463 commit c9a62f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/validate/multi_container_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var _ = framework.KubeDescribe("Multiple Containers [Conformance]", func() {
httpdStatus, err := rc.ContainerStatus(context.TODO(), httpdContainerID, false)
Expect(err).NotTo(HaveOccurred(), "get httpd container status")
Eventually(verifyContainerLog(httpdStatus.GetStatus().GetLogPath(),
"httpd -D FOREGROUND"), time.Minute, 100*time.Millisecond).Should(BeTrue())
"httpd"), time.Minute, 100*time.Millisecond).Should(BeTrue())

busyboxStatus, err := rc.ContainerStatus(context.TODO(), busyboxContainerID, false)
Expect(err).NotTo(HaveOccurred(), "get busybox container status")
Expand Down

0 comments on commit c9a62f2

Please sign in to comment.