Remove federationtest from matrix healthcheck
This commit is contained in:
parent
2d66759961
commit
e3d82f6a66
1 changed files with 1 additions and 10 deletions
|
@ -34,21 +34,12 @@ async def main():
|
||||||
print(e)
|
print(e)
|
||||||
|
|
||||||
print("exception during login or sending")
|
print("exception during login or sending")
|
||||||
send_ping(False)
|
send_ping(False, str(e))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
await client.close()
|
await client.close()
|
||||||
|
|
||||||
url = "https://federationtester.matrix.org/api/report?server_name=" \
|
|
||||||
+ os.environ['MATRIX_SERVER_FEDTESTER']
|
|
||||||
resp = requests.get(url)
|
|
||||||
data = resp.json() # Check the JSON Response Content documentation below
|
|
||||||
if data["FederationOK"] != True:
|
|
||||||
send_ping(False)
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
send_ping(True)
|
send_ping(True)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
asyncio.new_event_loop().run_until_complete(main())
|
asyncio.new_event_loop().run_until_complete(main())
|
||||||
|
|
Reference in a new issue