Skip to content

Commit

Permalink
Merge pull request #1325 from engix-ltd/master
Browse files Browse the repository at this point in the history
Fixed exception handling tb_gateway_service
  • Loading branch information
imbeacon authored Mar 8, 2024
2 parents afee9e0 + a58f829 commit 79ceb10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thingsboard_gateway/gateway/tb_gateway_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ def send_to_storage(self, connector_name, connector_id, data=None):
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):
Expand Down

0 comments on commit 79ceb10

Please sign in to comment.