Skip to content

Commit

Permalink
missed one thing when i split the branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Aug 19, 2024
1 parent 97110ec commit 65dbed0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
)
from dagster._core.definitions.selector import JobSubsetSelector
from dagster._core.errors import DagsterInvariantViolationError, DagsterRunNotFoundError
from dagster._core.execution.backfill import BulkActionsFilter
from dagster._core.instance import DagsterInstance
from dagster._core.storage.dagster_run import DagsterRunStatus, RunRecord, RunsFilter
from dagster._core.storage.event_log.base import AssetRecord
Expand Down Expand Up @@ -490,7 +491,7 @@ def get_runs_feed_entries(
for backfill in instance.get_backfills(
cursor=runs_feed_cursor.backfill_cursor,
limit=limit,
created_before=created_before_cursor,
filters=BulkActionsFilter(created_before=created_before_cursor),
)
]
runs = [
Expand Down

0 comments on commit 65dbed0

Please sign in to comment.