Skip to content

Commit

Permalink
Revert "filter run_ids before calling get_runs (dagster-io#24873)" (d…
Browse files Browse the repository at this point in the history
  • Loading branch information
alangenfeld authored Sep 28, 2024
1 parent c617f66 commit 6187312
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,6 @@ def passes(
run_ids_to_fetch = list(asset_partitions_by_latest_run_id.keys())
for i in range(0, len(run_ids_to_fetch), run_step):
run_ids = run_ids_to_fetch[i : i + run_step]
run_ids = [run_id for run_id in run_ids if run_id]
runs = context.legacy_context.instance_queryer.instance.get_runs(
filters=RunsFilter(run_ids=run_ids)
)
Expand Down

0 comments on commit 6187312

Please sign in to comment.