mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	Add dependencies and missing exception handling
This commit is contained in:
		@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user