Skip to content

[core-api][experimental] repository_def in RunStatusSensorDefinition #26709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing_extensions import TypeAlias

import dagster._check as check
from dagster._annotations import deprecated_param, experimental_param, public
from dagster._annotations import beta_param, deprecated_param, public
from dagster._core.definitions.graph_definition import GraphDefinition
from dagster._core.definitions.instigation_logger import InstigationLogger
from dagster._core.definitions.job_definition import JobDefinition
Expand Down Expand Up @@ -331,7 +331,7 @@ def get_step_failure_events(self) -> Sequence[DagsterEvent]:
return [cast(DagsterEvent, record.event_log_entry.dagster_event) for record in records]


@experimental_param(param="repository_def")
@beta_param(param="repository_def")
def build_run_status_sensor_context(
sensor_name: str,
dagster_event: DagsterEvent,
Expand Down
Loading