diff --git a/machine/jobs/build_clearml_helper.py b/machine/jobs/build_clearml_helper.py index c85daa5..bbc2c7b 100644 --- a/machine/jobs/build_clearml_helper.py +++ b/machine/jobs/build_clearml_helper.py @@ -1,7 +1,7 @@ import json import logging import os -from datetime import datetime +from datetime import datetime, timezone from typing import Callable, Optional, Union, cast from clearml import Task @@ -97,7 +97,7 @@ def report_clearml_progress( "type": datetime, "name": f"{progress_status.phase_stage}_started", "description": "Phase Started", - "value": progress_status.phase_started, + "value": progress_status.phase_started.astimezone(timezone.utc), } ) if len(props) > 0: