fierce-activity-81317
04/03/2026, 10:45 AMcard_cli.py `resolve_task_from_pathspec()`:
https://github.com/Netflix/metaflow/blob/master/metaflow/plugins/cards/card_cli.py#L67-L84
When a user provides runid/stepname or runid/stepname/taskid pathspec, the code calls namespace(None) to search globally across all namespaces for the target task.
However, if the user provides only stepname pathspec, it doesn't reset the namespace meaning it only searches for the target task in the current set namespace.
Is this intentional, or should the stepname pathspec also search globally across all namespaces?hundreds-rainbow-67050
04/09/2026, 3:14 PM