Hello, I got a question around using `with_overrid...
# flyte-support
b
Hello, I got a question around using
with_overrides(node_name=...)
in dynamic workflow
I was expecting the node name in UI to show the override but they are not. Am I missing anything? When I check the pod labels, they are having the correct
node_id
Copy code
@task
def echo_task(input: int):
    print(input)

@dynamic
def t1():
    for i in range(3):
     echo_task(input=i).with_overrides(node_name=f"""echo_task_node_name_override_{i}""")

@workflow
def wf_1():
    t1()
override on task in a workflow works as expected
Copy code
@task
def echo_task(input: int):
    print(input)

@workflow
def wf_1():
    echo_task(input=1).with_overrides(node_name=f"""echo_task_node_name_override_1""")
s
Hey, perhaps you’re hitting the same issue I ran into before. Long names are not overriden but get the identifier instead (IIRC >20 chars) nvm seems like UI bug
b
looks like it, thanks for sharing!
👍 1