blitz_api/app/lightning/utils.py
2023-03-26 20:53:50 +02:00

8 lines
217 B
Python

import grpc
def generic_grpc_error_handler(error: grpc.aio._call.AioRpcError):
details = error.details()
logger.debug(details)
raise HTTPException(status.HTTP_500_INTERNAL_SERVER_ERROR, detail=details)