diff --git a/test/e2e/workflow_test.go b/test/e2e/workflow_test.go index 40b368bbe..da49e2a1d 100644 --- a/test/e2e/workflow_test.go +++ b/test/e2e/workflow_test.go @@ -296,6 +296,7 @@ func getHealthStatusInContainer(podName string, containerName string, namespace h := health{} cmd := exec.Command("kubectl", "exec", "-t", podName, "-n", namespace, "-c", containerName, "--", "curl", "-s", "localhost:8080/q/health") output, err := utils.Run(cmd) + GinkgoWriter.Printf("%s\n", string(output)) Expect(err).NotTo(HaveOccurred()) err = json.Unmarshal(output, &h) if err != nil {