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.
This commit is contained in:
vitor-aignosi
2025-08-18 09:45:54 -03:00
parent a2a9f95aa5
commit e82b25582c
2 changed files with 4 additions and 2 deletions

View File

@@ -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'),