We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd0854 commit b6d57b4Copy full SHA for b6d57b4
tests/templates/kuttl/smoke/test_zookeeper.py
@@ -64,9 +64,7 @@ def check_monitoring(hosts):
64
url = host + ":9505"
65
response = try_get(url)
66
67
- if response.ok:
68
- continue
69
- else:
+ if not response.ok:
70
print("Error for [" + url + "]: could not access monitoring")
71
exit(-1)
72
@@ -81,7 +79,6 @@ def check_monitoring(hosts):
81
79
else:
82
80
print("Error for [" + url + "]: missing metrics")
83
84
85
86
87
0 commit comments