better error handling

This commit is contained in:
Karol Wypchlo 2021-03-01 17:21:53 +01:00
parent 937fe052b3
commit fb0ab9bb50
1 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ async def block_skylinks_from_airtable():
if airtable.status_code != 200: if airtable.status_code != 200:
message = "Airtable blocklist integration responded with code " + str(airtable.status_code) + ": " + (airtable.text or "empty response") message = "Airtable blocklist integration responded with code " + str(airtable.status_code) + ": " + (airtable.text or "empty response")
return print(message) and await send_msg(client, message, force_notify=False) return print(message) or await send_msg(client, message, force_notify=False)
skylinks = [entry['fields'][AIRTABLE_FIELD] for entry in airtable.json()['records']] skylinks = [entry['fields'][AIRTABLE_FIELD] for entry in airtable.json()['records']]
print("Airtable returned " + str(len(skylinks)) + " skylinks to block") print("Airtable returned " + str(len(skylinks)) + " skylinks to block")
@ -34,10 +34,10 @@ async def block_skylinks_from_airtable():
response = requests.post('http://' + ipaddress + ':9980/skynet/blocklist', auth = auth, headers = headers, data = data) response = requests.post('http://' + ipaddress + ':9980/skynet/blocklist', auth = auth, headers = headers, data = data)
if response.status_code == 204: if response.status_code == 204:
print("Skylinks successfully added to siad blocklist") return print("Skylinks successfully added to siad blocklist")
else: else:
message = "Siad blocklist endpoint responded with code " + str(response.status_code) + ": " + (response.text or "empty response") message = "Siad blocklist endpoint responded with code " + str(response.status_code) + ": " + (response.text or "empty response")
await print(message) and send_msg(client, message, force_notify=False) return await print(message) or send_msg(client, message, force_notify=False)
async def exit_after(delay): async def exit_after(delay):
await asyncio.sleep(delay) await asyncio.sleep(delay)