From c157d1649a8e395567ac29767896c33203145aa1 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Thu, 23 Jul 2026 12:04:13 -0300 Subject: [PATCH] SAM0123-231: Broaden quality gate workflow to include release and feature branches; correct asynchronous call for OPC server updates in ingestor. --- .github/workflows/quality-gate.yml | 2 ++ ingestor/ingestor.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quality-gate.yml b/.github/workflows/quality-gate.yml index 2f3002f..61b07c5 100644 --- a/.github/workflows/quality-gate.yml +++ b/.github/workflows/quality-gate.yml @@ -4,6 +4,8 @@ on: pull_request: branches: - main + - 'release/**' + - 'feature/**' types: [ opened, synchronize, reopened ] jobs: diff --git a/ingestor/ingestor.py b/ingestor/ingestor.py index 4b76888..4ddb063 100644 --- a/ingestor/ingestor.py +++ b/ingestor/ingestor.py @@ -156,7 +156,7 @@ class Ingestor(SientiaMonitoring): else: # Subscribe to acquired slots if self.ingestor_manager: - self.ingestor_manager.update_opc_servers() + await self.ingestor_manager.update_opc_servers() await self.ingestor_manager.subscribe_to_tags(acquired) async def prepare_ingestor(self):