Added 'request_halt' flag, and fixed an orchestration bug (#174)

* Added 'request_halt' flag, and fixed an orchestration bug

* Fixed formatting errors.

* Fixed a hatch error with casting.
This commit is contained in:
afourney
2024-07-03 00:04:44 -07:00
committed by GitHub
parent 9df928b73e
commit 99ecb5ec7f
4 changed files with 32 additions and 12 deletions

View File

@@ -524,7 +524,7 @@ echo RUN.SH COMPLETE !#!#
while True:
try:
chunk = cast(bytes, next(logs)) # Manually step the iterator so it is captures with the try-catch
chunk = next(logs) # Manually step the iterator so it is captures with the try-catch
# Stream the data to the log file and the console
chunk_str = chunk.decode("utf-8")