Merge branch 'cc-5709-airtime-analyzer' into saas

This commit is contained in:
Albert Santoni 2014-10-21 19:24:03 -04:00
commit c4af1b6b19
1 changed files with 3 additions and 3 deletions

View File

@ -134,11 +134,11 @@ def is_web_server_broken(url):
test_req = requests.get(url)
test_req.raise_for_status()
except Exception as e:
return true
return True
else:
# The request worked fine, so the web server and Airtime are still up.
return false
return false
return False
return False
def alert_hung_request():