1
0
mirror of https://github.com/thingsboard/thingsboard-gateway synced 2025-10-26 22:31:42 +08:00

Fixed exception handling tb_gateway_service

This commit is contained in:
devaskim
2024-03-04 14:29:58 +05:00
committed by GitHub
parent cca1d39866
commit 372c98ec8a

View File

@@ -955,7 +955,7 @@ class TBGatewayService:
else:
return Status.NO_NEW_DATA
except Exception as e:
log.exception("Cannot put converted data!", e)
log.exception("Cannot put converted data!", exc_info=e)
return Status.FAILURE
def __send_to_storage(self):