Does Orion support dynamic task naming yet? I trie...
# prefect-community
k
Does Orion support dynamic task naming yet? I tried the
@task(name="{val}")
syntax, but it didn’t look like the templating syntax was getting interpreted. (I would up with “{val}” in all of my task names)
a
I think something like
Copy code
your_task(*args, **kwargs)

# update to this
your_task.with_options(name=val)(*args, **kwargs)
🙏 1
upvote 1