Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions tests/templates/kuttl/smoke/test_zookeeper.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ def check_monitoring(hosts):
url = host + ":9505"
response = try_get(url)

if response.ok:
continue
else:
if not response.ok:
print("Error for [" + url + "]: could not access monitoring")
exit(-1)

Expand All @@ -81,7 +79,6 @@ def check_monitoring(hosts):
else:
print("Error for [" + url + "]: missing metrics")
exit(-1)
continue
else:
print("Error for [" + url + "]: could not access monitoring")
exit(-1)
Expand Down