From e82b25582c7c2160e2b257a3bb84e7efc7a566b3 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Mon, 18 Aug 2025 09:45:54 -0300 Subject: [PATCH] SIENTIAPDE-1169 Update helm chart version in values.yaml and modify logging in worker.py - Updated helm upgrade command in values.yaml to version 0.5.0-uat. - Changed log message in worker.py to indicate the start of the SDK Metrics Server, while retaining the original log for the Temporal Client. --- laborious/worker/worker.py | 4 +++- values.yaml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/laborious/worker/worker.py b/laborious/worker/worker.py index fa8c57d..47463f5 100644 --- a/laborious/worker/worker.py +++ b/laborious/worker/worker.py @@ -56,7 +56,7 @@ async def main(): notification_handler=notification_handler ) - logger.info('Starting Temporal Client...') + logger.info(f'Starting SDK Metrics Server on port {SDK_METRICS_PORT}...') new_runtime = Runtime( telemetry=TelemetryConfig( @@ -65,6 +65,8 @@ async def main(): ) ) + logger.info('Starting Temporal Client...') + temporal_client = await client.Client.connect( target_host=host, namespace=os.getenv('TEMPORAL_NAMESPACE', 'laborious'), diff --git a/values.yaml b/values.yaml index 46e72e2..588c690 100644 --- a/values.yaml +++ b/values.yaml @@ -221,7 +221,7 @@ ssh: # kubectl create secret docker-registry docker-hub-secret --namespace sientia --docker-server=http://aignosi.azurecr.io --docker-username=aignosi --docker-password=5I5zpQ6sRaHqX1hD3dr+2mo647yO3FRc359/wu6gsP+ACRDRz5mp -# helm upgrade --install sientia-laborious-worker sientia/sientia-module -n sientia --create-namespace -f ./values.yaml --version 0.4.0 +# helm upgrade --install sientia-laborious-worker sientia/sientia-module -n sientia --create-namespace -f ./values.yaml --version 0.5.0-uat # kubectl create secret generic git-ssh-key-sientia-laborious-worker \ # --namespace sientia \