Skip to content

Commit

Permalink
messsage
Browse files Browse the repository at this point in the history
  • Loading branch information
Feinburger committed May 3, 2024
1 parent de53759 commit ec890e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def monitor(subdomain, FQDN, record_list, uptime, downtime, recorded, zone_id):
response = requests.get(f"http://{FQDN}:{record_list[i].get('port', 80)}{record_list[i].get('path', '/')}", timeout=get_timeout)
status_code_range = record_list[i].get("status_code_range", [[200, 299]])
if not within_range(status_code_range, int(response.status_code)) or not string_match(record_list[i].get("match_string", "random_string"), response.text):
print(f"{record_list[i]["ip_address"]} not within range or string doens't match")
print(f"{record_list[i]['ip_address']} not within range or string doens't match")
raise requests.RequestException()

print(f"{record_list[i]['ip_address']}:{record_list[i].get('port', 80)}{record_list[i].get('path', '/')} UP")
Expand Down

0 comments on commit ec890e5

Please sign in to comment.