SAM0123-231: Broaden quality gate workflow to include release and feature branches; correct asynchronous call for OPC server updates in ingestor.

This commit is contained in:
vitor-aignosi
2026-07-23 12:04:13 -03:00
parent 0d9d7b2ebe
commit c157d1649a
2 changed files with 3 additions and 1 deletions

View File

@@ -4,6 +4,8 @@ on:
pull_request: pull_request:
branches: branches:
- main - main
- 'release/**'
- 'feature/**'
types: [ opened, synchronize, reopened ] types: [ opened, synchronize, reopened ]
jobs: jobs:

View File

@@ -156,7 +156,7 @@ class Ingestor(SientiaMonitoring):
else: else:
# Subscribe to acquired slots # Subscribe to acquired slots
if self.ingestor_manager: 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) await self.ingestor_manager.subscribe_to_tags(acquired)
async def prepare_ingestor(self): async def prepare_ingestor(self):