seafile-backup/HealthchecksIO.py
jblu e8ac879403
All checks were successful
continuous-integration/drone/push Build is passing
Updated healthchecks to have a run time
2024-05-28 15:43:54 -05:00

8 lines
253 B
Python

def healthcheck_ping(req_obj, url, start=False):
if start == True:
url + '/start'
try:
req_obj.get(url, timeout=10)
except req_obj.RequestException as e:
# Log ping failure here...
print("Ping failed: %s" % e)