SIENTIAPDE-1193

Update requirements and values for SIENTIAPDE-1193

- Bump sientia-dataops-library version from 1.4.1 to 1.4.2 in requirements.txt.
- Change GITHUB_BRANCH in values.yaml to reflect the new task SIENTIAPDE-1193 regarding datetime writing in temporal.
This commit is contained in:
vitor-aignosi
2025-08-22 08:11:42 -03:00
parent 3761cbd22f
commit 5050e0652b
3 changed files with 7 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ with workflow.unsafe.imports_passed_through():
from typing import Any
from datetime import timedelta
from sientia_do.temporal.policies import retry_policy
from sientia_do.temporal.constants import DATETIME_FORMAT
@workflow.defn(name="format_and_export_prediction")
@@ -91,6 +92,10 @@ class FormatAndExportPrediction():
'schema': input_data['schema'],
'table_name': input_data['table_name'],
'data': prediction,
'timestamp_conversion': {
'column': 'timestamp',
'format': DATETIME_FORMAT
}
},
retry_policy=retry_policy,
start_to_close_timeout=timedelta(seconds=60)