Skip to content

Commit

Permalink
Merge pull request #2 from weni-ai/feature/logs
Browse files Browse the repository at this point in the history
fix: passing datetime to transfor_start_time in processor bulk object
  • Loading branch information
AlanJaeger authored Jan 7, 2025
2 parents 69d0447 + 088a739 commit 78c68fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shared/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def execute(self):
continue

transformed_objects = []
transform_start_time = time.time()
transform_start_time = datetime.now()


for obj in from_obj_list:
# [T]ransform the object into the new format to be saved in the storage_to
Expand Down

0 comments on commit 78c68fa

Please sign in to comment.