mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	Fix BrokenPipeError handling in cqi_over_socketio
This commit is contained in:
		@@ -86,11 +86,8 @@ def cqi_over_sio(fn_name: str, fn_args: Dict = {}):
 | 
			
		||||
    cqi_client_lock.acquire()
 | 
			
		||||
    try:
 | 
			
		||||
        fn_return_value = fn(**fn_args)
 | 
			
		||||
    except BrokenPipeError:
 | 
			
		||||
        fn_return_value = {
 | 
			
		||||
            'code': 500,
 | 
			
		||||
            'msg': 'Internal Server Error'
 | 
			
		||||
        }
 | 
			
		||||
    except BrokenPipeError as e:
 | 
			
		||||
        return {'code': 500, 'msg': 'Internal Server Error'}
 | 
			
		||||
    except CQiException as e:
 | 
			
		||||
        return {
 | 
			
		||||
            'code': 502,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user