Brett Naul
11/12/2021, 7:40 PMprefect run --watch
(and similarly watch_flow_run
) don't show any logs until my run has finished (at which point they all show up in one deluge), whereas prefect run flow --logs
would stream them continuously. @Zanie is that the intended behavior or might something be amiss? in this case it was about 5 minutes of no logs, haven't tried with something even longer yetBrett Naul
11/12/2021, 7:44 PM[]
for the entire duration (everything after "Beginning flow run...") even though there are lots of logs in the UI... 🤔Zanie
updated_time
on the flow run object which is unchanged until the state changes.Zanie
watch_flow_run
to poll with pendulum.now()
so it should resolve what you're seeing.Brett Naul
11/12/2021, 7:51 PM