working rc1

This commit is contained in:
2023-08-26 02:46:07 -05:00
parent d0e1100689
commit e997841034
12 changed files with 261 additions and 78 deletions

6
HealthchecksIO.py Normal file
View File

@@ -0,0 +1,6 @@
def healthcheck_ping(req_obj, url):
try:
req_obj.get(url, timeout=10)
except req_obj.RequestException as e:
# Log ping failure here...
print("Ping failed: %s" % e)