:wave::skin-tone-2: I'm encountering an issue whe...
# ask-the-community
n
👋🏻 I'm encountering an issue when running a workflow that takes a list of Python dataclasses as an argument. Here's an example of the dataclass:
Copy code
@dataclass
class FooBar:
    foo: int
    bar: int
The workflow executes successfully initially. However, when I attempt to "Relaunch" the execution with large values (e.g., Unix timestamps), the Flyte console converts these values into objects, see screenshots below. This conversion subsequently causes the workflow to fail, throwing an exception in /flytekit/core/base_task.py", line 701, in dispatch_execute. I suspect the issue might be related to the npm long package, which handles large integer conversions. However, I'm unsure about the exact cause. Any insights or suggestions would be greatly appreciated.