flytekit q: ```execution = flyte_remote.fetch_exec...
# announcements
a
flytekit q:
Copy code
execution = flyte_remote.fetch_execution(name = execution_id)
print (execution.node_executions)
is
execution.node_executions
expected to be populated? If not, how do I get the node execution details? I'm looking for level of details similar to returned by
flytectl get execution execid --details --nodeID n0 -o yaml
t
Did you sync the execution?
remote.sync?
There is a #flytekit channel btw
thx 1
a
thanks @Thomas Vetterli. Are you saying I should call remote.sync() before accessing the details?
t
I think so yes
And thinking the execution itself
Exec = remote.sync(execution)
158 Views