mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
Add dependencies and missing exception handling
This commit is contained in:
parent
a2e4fd2df5
commit
904747ec66
@ -35,7 +35,10 @@ def cqi_over_socketio(f):
|
||||
try:
|
||||
return_value = f(**f_args)
|
||||
except BrokenPipeError:
|
||||
pass
|
||||
return_value = {
|
||||
'code': 500,
|
||||
'msg': 'Internal Server Error'
|
||||
}
|
||||
except cqi.errors.CQiException as e:
|
||||
return_value = {
|
||||
'code': 500,
|
||||
|
@ -13,6 +13,7 @@ Flask-SocketIO~=5.1
|
||||
Flask-SQLAlchemy
|
||||
Flask-WTF
|
||||
gunicorn
|
||||
hiredis
|
||||
jsonpatch
|
||||
jsonschema
|
||||
psycopg2
|
||||
|
Loading…
Reference in New Issue
Block a user