SIENTIAPDE-1151

fix: update GITHUB_BRANCH in values.yaml and ensure error messages are converted to strings in formatters.py for improved notification clarity
This commit is contained in:
vitor-aignosi
2025-07-18 09:49:55 -03:00
parent 92fbb704f5
commit 37f4e6cf59
2 changed files with 3 additions and 3 deletions

View File

@@ -125,7 +125,7 @@ class Formatters(BaseActivity):
self.send_notification(
metadata=metadata,
notification_id="ORCHESTRATOR_BUILD_TAG_CONFIG_ERROR",
message=e,
message=str(e),
block="orchestrator",
level=NotificationLevel.ERROR
)
@@ -141,7 +141,7 @@ class Formatters(BaseActivity):
self.send_notification(
metadata=metadata,
notification_id="ORCHESTRATOR_BUILD_TAG_CONFIG_ERROR",
message=e,
message=str(e),
block="orchestrator",
level=NotificationLevel.ERROR
)

View File

@@ -132,7 +132,7 @@ env:
- name: GITHUB_REPO_URL
value: "git@github.com:Aignosi/sientia-dataops-orchestrator_temporal.git"
- name: GITHUB_BRANCH
value: "SIENTIAPDE-1163-alterar-dinamica-de-notificacoes-para-usar-o-mongodb-ao-inves-do-kafka"
value: "SIENTIAPDE-1151-criar-testes-de-stress"
- name: PYTHON_APP
value: "orchestrator.worker.worker"