Skip to content

Commit 048f7a2

Browse files
committed
Adjust redis matching strings
1 parent dc76944 commit 048f7a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/kubectl/kubectl.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ metadata:
11441144
waitForOrFailWithDebug(1)
11451145
forEachPod(func(pod v1.Pod) {
11461146
e2elog.Logf("wait on redis-master startup in %v ", ns)
1147-
framework.LookForStringInLog(ns, pod.Name, "redis-master", "The server is now ready to accept connections", framework.PodStartTimeout)
1147+
framework.LookForStringInLog(ns, pod.Name, "redis-master", "Ready to accept connections", framework.PodStartTimeout)
11481148
})
11491149
validateService := func(name string, servicePort int, timeout time.Duration) {
11501150
err := wait.Poll(framework.Poll, timeout, func() (bool, error) {
@@ -1323,7 +1323,7 @@ metadata:
13231323
waitForOrFailWithDebug(1)
13241324
forEachPod(func(pod v1.Pod) {
13251325
ginkgo.By("checking for a matching strings")
1326-
_, err := framework.LookForStringInLog(ns, pod.Name, containerName, "The server is now ready to accept connections", framework.PodStartTimeout)
1326+
_, err := framework.LookForStringInLog(ns, pod.Name, containerName, "Ready to accept connections", framework.PodStartTimeout)
13271327
framework.ExpectNoError(err)
13281328

13291329
ginkgo.By("limiting log lines")

0 commit comments

Comments
 (0)