late-memory-42149
08/17/2024, 10:26 PMexecution = remote.fetch_execution(name="...", project="...", domain="...")
execution_output = {}
for key, val in execution.outputs.items():
execution_output[key] = val
this works well if the output is a python dict. But it throws exception Cannot convert from <FlyteLiteral scalar { primitive
{ string_value:… to <class Dict>
when the workflow return type is primitive type. how could I handle both scenarios? Any help is appreciated!freezing-airport-6809
freezing-airport-6809
late-memory-42149
08/19/2024, 6:26 PM