Merge pull request #9 from Aignosi/SIENTIAPDE-1148-separar-scouter-laborious-e-orchestrator-por-namespaces

Sientiapde 1148 separar scouter laborious e orchestrator por namespaces
This commit is contained in:
Matheus Demoner
2025-07-14 10:36:36 -03:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -262,7 +262,7 @@ class Gates(BaseActivity):
data['prediction_confidence'] = input_data['prediction_confidence'] data['prediction_confidence'] = input_data['prediction_confidence']
data['prediction_status'] = 'Good' data['prediction_status'] = 'Good'
data['comments'] = "" data['comments'] = ""
data.sort_values(by='timestamp', inplace=True) data = data.sort_values(by='timestamp')
return data.to_dict() return data.to_dict()

View File

@@ -95,7 +95,7 @@ async def main():
# This will run the workers and wait for them to complete. # This will run the workers and wait for them to complete.
# If an exception occurs in any of the worker handlers, it will be propagated here. # If an exception occurs in any of the worker handlers, it will be propagated here.
await asyncio.gather(*handlers) await asyncio.gather(*handlers)
except BaseException as e: except BaseException as e: # NOSONAR
logger.error(f"An unhandled exception occurred: {e}") logger.error(f"An unhandled exception occurred: {e}")
finally: finally:
if notification_handler: if notification_handler:

View File

@@ -123,7 +123,7 @@ env:
- name: GITHUB_REPO_URL - name: GITHUB_REPO_URL
value: "git@github.com:Aignosi/sientia-dataops-laborious_temporal.git" value: "git@github.com:Aignosi/sientia-dataops-laborious_temporal.git"
- name: GITHUB_BRANCH - name: GITHUB_BRANCH
value: "SIENTIAPDE-1141-criar-testes-de-carga" value: "SIENTIAPDE-1148-separar-scouter-laborious-e-orchestrator-por-namespaces"
- name: PYTHON_APP - name: PYTHON_APP
value: "laborious.worker.worker" value: "laborious.worker.worker"
@@ -168,7 +168,7 @@ env:
- name: TEMPORAL_HOST - name: TEMPORAL_HOST
value: "temporal-frontend.temporal.svc.cluster.local:7233" value: "temporal-frontend.temporal.svc.cluster.local:7233"
- name: TEMPORAL_NAMESPACE - name: TEMPORAL_NAMESPACE
value: "default" value: "laborious"
ssh: ssh:
enabled: true enabled: true