Christian Nuss
04/07/2022, 4:26 PMstdout generated inside a container from a DockerRun or KubernetesRun be provided back into Prefect following the successful execution of the flow?Kevin Kho
stdout generated from a task? Or some other process? Did you try:
@task(log_stdout=True)
?Christian Nuss
04/07/2022, 4:40 PMShellTask will get me what i need!
i see theres a footnote in https://docs.prefect.io/api/latest/tasks/shell.html#shelltask
This task combines stderr and stdout
is there a configuration to only and always get stdout?Kevin Kho
ShellTask(..., return_all=True, log_stderr=True, stream_output=True)Christian Nuss
04/07/2022, 4:42 PM