gsd 2 years ago
parent
commit
fb76054db9
  1. 2
      backend_integration.py

2
backend_integration.py

@ -20,7 +20,7 @@ class BackendClient:
async def pulse(self):
async with aiohttp.ClientSession(cookies={
"secretkey":self.secret_key}) as session:
async with session.get(self.pulse, ssl=False) as response:
async with session.get(self.pulse_url, ssl=False) as response:
try:
await response.text()
self.up = True

Loading…
Cancel
Save