Merge pull request 'refs #2840 exit from the infinite loop' (#64) from fix-wait-in-a-loop into main
ogagent/pipeline/tag There was a failure building this commit Details
ogagent/pipeline/head This commit looks good Details

Reviewed-on: #64
main 8.3.3
Natalia Serrano 2025-09-23 13:46:45 +02:00
commit 71630387c2
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,3 @@
# Changelog
All notable changes to this project will be documented in this file.
@ -6,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [8.3.3] - 2025-09-23
### Fixed
- Exit from the infinite loop
## [8.3.2] - 2025-09-18
### Fixed

View File

@ -346,6 +346,7 @@ class ogLiveWorker(ServerWorker):
while True:
try:
p.wait (1)
break
except subprocess.TimeoutExpired:
pass