You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mentioned in flyteorg/flytekit#2859, while using dataclasses with union properties that have more than two non-None variants, the msgpack decoder will fail to decode the binary back to dataclass. Currently, I have raised an issue at Fatal1ty/mashumaro#255 describing this problem.
The expected output should be something like DC(ff=/var/folders/nc/zmjfff853y33j17lwwdk299w0000gn/T/flyte-h8b6o6_w/sandbox/local_flytekit/9489edd65d6ce1b52fa248a4ba0ba6a4/path), where ff is a FlyteFile type.
Current Output: DC(ff={'path': 's3://path'}), where the ff is a dict.
Additional context to reproduce
No response
Screenshots
No response
Are you sure this issue hasn't been raised already?
Yes
Have you read the Code of Conduct?
Yes
The text was updated successfully, but these errors were encountered:
Describe the bug
Mentioned in flyteorg/flytekit#2859, while using dataclasses with union properties that have more than two non-None variants, the msgpack decoder will fail to decode the binary back to dataclass. Currently, I have raised an issue at Fatal1ty/mashumaro#255 describing this problem.
Expected behavior
The expected output should be something like
DC(ff=/var/folders/nc/zmjfff853y33j17lwwdk299w0000gn/T/flyte-h8b6o6_w/sandbox/local_flytekit/9489edd65d6ce1b52fa248a4ba0ba6a4/path)
, whereff
is a FlyteFile type.Current Output:
DC(ff={'path': 's3://path'})
, where theff
is a dict.Additional context to reproduce
No response
Screenshots
No response
Are you sure this issue hasn't been raised already?
Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: