Skip to content

Commit ff4f756

Browse files
committed
[core-api][experimental] report_runless_asset_event
1 parent 9ce5277 commit ff4f756

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

python_modules/dagster/dagster/_core/definitions/run_request.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
)
1717

1818
import dagster._check as check
19-
from dagster._annotations import PublicAttr, experimental_param
19+
from dagster._annotations import PublicAttr
2020
from dagster._core.definitions.asset_check_evaluation import AssetCheckEvaluation
2121
from dagster._core.definitions.asset_check_spec import AssetCheckKey
2222
from dagster._core.definitions.asset_graph_subset import AssetGraphSubset
@@ -354,9 +354,6 @@ def __new__(
354354
)
355355

356356

357-
@experimental_param(
358-
param="asset_events", additional_warn_text="Runless asset events are experimental"
359-
)
360357
class SensorResult(
361358
NamedTuple(
362359
"_SensorResult",

python_modules/dagster/dagster/_core/instance/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from typing_extensions import Protocol, Self, TypeAlias, TypeVar, runtime_checkable
3333

3434
import dagster._check as check
35-
from dagster._annotations import deprecated, experimental, public
35+
from dagster._annotations import deprecated, public
3636
from dagster._core.definitions.asset_check_evaluation import (
3737
AssetCheckEvaluation,
3838
AssetCheckEvaluationPlanned,
@@ -3261,7 +3261,6 @@ def get_latest_materialization_code_versions(
32613261

32623262
return result
32633263

3264-
@experimental
32653264
@public
32663265
def report_runless_asset_event(
32673266
self,

0 commit comments

Comments
 (0)