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()
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