Gateway: typing: parse_and_error_handle()

This commit is contained in:
Athanasius 2021-11-04 13:29:19 +00:00
parent 35b90de06d
commit 9be3cd82d8
No known key found for this signature in database
GPG Key ID: 8C392035DD80FD62

View File

@ -188,7 +188,7 @@ def get_decompressed_message() -> bytes:
return message_body
def parse_and_error_handle(data):
def parse_and_error_handle(data: str) -> str:
"""
Parse an incoming message and handle errors.
@ -218,7 +218,7 @@ def parse_and_error_handle(data):
pass
response.status = 400
logger.error(f"Error to {get_remote_address()}: {exc.message}")
logger.error(f"Error to {get_remote_address()}: {exc}")
return str(exc)
return 'FAIL: JSON parsing: ' + str(exc)