mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Merge pull request #174 from fukusuket/fix-500-erro-when-invalid-lacus-url
fix: [crawler] add exception handing for `ping_lacus`
This commit is contained in:
commit
8f0e7f1434
1 changed files with 5 additions and 1 deletions
|
@ -1795,7 +1795,11 @@ def ping_lacus():
|
||||||
ping = False
|
ping = False
|
||||||
req_error = {'error': 'Lacus URL undefined', 'status_code': 400}
|
req_error = {'error': 'Lacus URL undefined', 'status_code': 400}
|
||||||
else:
|
else:
|
||||||
ping = lacus.is_up
|
try:
|
||||||
|
ping = lacus.is_up
|
||||||
|
except:
|
||||||
|
req_error = {'error': 'Failed to connect Lacus URL', 'status_code': 400}
|
||||||
|
ping = False
|
||||||
update_lacus_connection_status(ping, req_error=req_error)
|
update_lacus_connection_status(ping, req_error=req_error)
|
||||||
return ping
|
return ping
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue