Hi all, I'm running a flow in a k8s environment an...
# prefect-server
c
Hi all, I'm running a flow in a k8s environment and created custom
state_handler
for a flow. When running locally in the
new_state
object the
result
property has values in it, but when I run it on the cluster, the
result
property is empty. Does someone know why is that empty, and how can I get the errors of a flow run in the state handler on a cluster env? Thanks.
a
Did you configure results on your tasks? You can e.g. check if your result is an instance of an Exception, here is an example
c
Thanks