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

Merge pull request #1325 from engix-ltd/master

Fixed exception handling tb_gateway_service
This commit is contained in:
Illia Barkov
2024-03-08 14:35:07 +02:00
committed by GitHub

View File

@@ -957,7 +957,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):