Skip to content

Commit

Permalink
fix multi asset check selection (#16877)
Browse files Browse the repository at this point in the history
I didn't test selecting inside a multi asset over the graphql layer, and
lo and behold it wasn't being passed properly. Yet more fodder for a
combo selection object.

---------

Co-authored-by: Rex Ledesma <[email protected]>
  • Loading branch information
2 people authored and yuhan committed Oct 3, 2023
1 parent 22e0e1e commit df4fdae
Show file tree
Hide file tree
Showing 13 changed files with 12,016 additions and 10,208 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def create_valid_pipeline_run(
),
asset_check_selection=(
frozenset(execution_params.selector.asset_check_selection)
if execution_params.selector.asset_check_selection
if execution_params.selector.asset_check_selection is not None
else None
),
op_selection=execution_params.selector.op_selection,
Expand Down
Loading

0 comments on commit df4fdae

Please sign in to comment.