changed buildbot monitoring URL
This commit is contained in:
parent
c0081cadb2
commit
37e38a6891
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ def buildbot_up() -> bool:
|
||||||
"""Check if buildbot server is up"""
|
"""Check if buildbot server is up"""
|
||||||
print("Checking Buildbot status...")
|
print("Checking Buildbot status...")
|
||||||
try:
|
try:
|
||||||
response = requests.get(BUILDBOT_URL + "/masters")
|
response = requests.get(BUILDBOT_URL + "buildrequests?limit=100")
|
||||||
if "masters" in response.json():
|
if "masters" in response.json():
|
||||||
print(" Buildbot is up.")
|
print(" Buildbot is up.")
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue