1
0
Fork 0

changed buildbot monitoring URL

This commit is contained in:
Christian Kühnel 2021-05-10 10:11:13 +02:00 committed by Mikhail Goncharov
parent c0081cadb2
commit 37e38a6891

View file

@ -32,7 +32,7 @@ def buildbot_up() -> bool:
"""Check if buildbot server is up"""
print("Checking Buildbot status...")
try:
response = requests.get(BUILDBOT_URL + "/masters")
response = requests.get(BUILDBOT_URL + "buildrequests?limit=100")
if "masters" in response.json():
print(" Buildbot is up.")
return True