Loading transfer_service/data_rpc_server.py +4 −4 Original line number Diff line number Diff line Loading @@ -87,15 +87,15 @@ class DataRPCServer(RedisRPCServer): try: rapCli = RapClient() rapInfo = rapCli.getUserInfo(user) except MultipleUsersException: errorMsg = "Multiple users with the same email address in RAP." except HTTPException: errorMsg = "HTTP exception." self.logger.exception(errorMsg) response = { "responseType": "ERROR", "errorCode": 6, "errorMsg": errorMsg } return response except HTTPException: errorMsg = "HTTP exception." except MultipleUsersException: errorMsg = "Multiple users with the same email address in RAP." self.logger.exception(errorMsg) response = { "responseType": "ERROR", "errorCode": 7, Loading Loading
transfer_service/data_rpc_server.py +4 −4 Original line number Diff line number Diff line Loading @@ -87,15 +87,15 @@ class DataRPCServer(RedisRPCServer): try: rapCli = RapClient() rapInfo = rapCli.getUserInfo(user) except MultipleUsersException: errorMsg = "Multiple users with the same email address in RAP." except HTTPException: errorMsg = "HTTP exception." self.logger.exception(errorMsg) response = { "responseType": "ERROR", "errorCode": 6, "errorMsg": errorMsg } return response except HTTPException: errorMsg = "HTTP exception." except MultipleUsersException: errorMsg = "Multiple users with the same email address in RAP." self.logger.exception(errorMsg) response = { "responseType": "ERROR", "errorCode": 7, Loading