mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user