Tim Chan
08/17/2022, 12:13 AMHandled output "result" using IO manager "io_manager"
I don't see any data.sandy
08/17/2022, 3:32 PMlog_entry
values in a local variable:
log_entries = []
while True:
if timeout and time.time() - start_time > timeout:
watch.stop()
raise Exception("Timed out waiting for pod to finish")
try:
log_entry = next(log_stream)
log_entries.append(log_entry)
print(log_entry) # pylint: disable=print-call
except StopIteration:
break
and then return log_entries
at the end
would that work for you?Tim Chan
08/17/2022, 4:18 PMsandy
08/17/2022, 11:55 PM