mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05: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:
|
try:
|
||||||
return_value = f(**f_args)
|
return_value = f(**f_args)
|
||||||
except BrokenPipeError:
|
except BrokenPipeError:
|
||||||
pass
|
return_value = {
|
||||||
|
'code': 500,
|
||||||
|
'msg': 'Internal Server Error'
|
||||||
|
}
|
||||||
except cqi.errors.CQiException as e:
|
except cqi.errors.CQiException as e:
|
||||||
return_value = {
|
return_value = {
|
||||||
'code': 500,
|
'code': 500,
|
||||||
|
@ -13,6 +13,7 @@ Flask-SocketIO~=5.1
|
|||||||
Flask-SQLAlchemy
|
Flask-SQLAlchemy
|
||||||
Flask-WTF
|
Flask-WTF
|
||||||
gunicorn
|
gunicorn
|
||||||
|
hiredis
|
||||||
jsonpatch
|
jsonpatch
|
||||||
jsonschema
|
jsonschema
|
||||||
psycopg2
|
psycopg2
|
||||||
|
Loading…
Reference in New Issue
Block a user