File tree 2 files changed +4
-8
lines changed
python_modules/dagster/dagster/_core/definitions
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 2
2
from typing import Iterable , NamedTuple , Optional
3
3
4
4
import dagster ._check as check
5
- from dagster ._annotations import experimental , public
5
+ from dagster ._annotations import beta , public
6
6
from dagster ._serdes import whitelist_for_serdes
7
7
from dagster ._utils .warnings import disable_dagster_warnings
8
8
@@ -12,7 +12,7 @@ class BackfillPolicyType(Enum):
12
12
MULTI_RUN = "MULTI_RUN"
13
13
14
14
15
- @experimental
15
+ @beta
16
16
@whitelist_for_serdes
17
17
class BackfillPolicy (
18
18
NamedTuple (
Original file line number Diff line number Diff line change 15
15
)
16
16
17
17
import dagster ._check as check
18
- from dagster ._annotations import (
19
- experimental_param ,
20
- hidden_param ,
21
- only_allow_hidden_params_in_kwargs ,
22
- )
18
+ from dagster ._annotations import beta_param , hidden_param , only_allow_hidden_params_in_kwargs
23
19
from dagster ._config .config_schema import UserConfigSchema
24
20
from dagster ._core .definitions .asset_check_spec import AssetCheckSpec
25
21
from dagster ._core .definitions .asset_dep import (
@@ -131,7 +127,7 @@ def _validate_hidden_non_argument_dep_param(
131
127
return non_argument_deps
132
128
133
129
134
- @experimental_param (param = "backfill_policy" )
130
+ @beta_param (param = "backfill_policy" )
135
131
@hidden_param (
136
132
param = "non_argument_deps" ,
137
133
breaking_version = "2.0.0" ,
You can’t perform that action at this time.
0 commit comments