I was wondering if there is away to make sure that...
# flyte-support
b
I was wondering if there is away to make sure that tasks that are run as part of an imperative workflow are able to be named in a way that denotes what they do? I currently add tasks in this way
Copy code
task_node = wf.add_task(
                        my_task,
                        ...
                    ).with_overrides(name="staging_model_calculation")
But when I go to the actual flyte execution every task is named just
my_task
. Should I be applying this override in a different spot?
g
it should work. seems like a bug
mind opening an issue. [flyte-bug]