You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just discovered that when you specify recipe labels with leading spaces (run: some_recipe_id), the recipe will get picked up by the action (it tries to run it), but will fail due to the constucted jobname still containing spaces (which dataflow hates).
We should make this behavior consistent by doing one of the below:
Error out earlier in the action (with helpful error message) if the label based id contains spaces
Or remove spaces automatically as part of the name generation.
I guess if we are implementing one or the other we want to take care of trailing spaces too?
The text was updated successfully, but these errors were encountered:
I just discovered that when you specify recipe labels with leading spaces (
run: some_recipe_id
), the recipe will get picked up by the action (it tries to run it), but will fail due to the constucted jobname still containing spaces (which dataflow hates).We should make this behavior consistent by doing one of the below:
I guess if we are implementing one or the other we want to take care of trailing spaces too?
The text was updated successfully, but these errors were encountered: