Skip to content

Commit

Permalink
[core-api][experimental] BackfillPolicy
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenKephart committed Dec 23, 2024
1 parent 1138493 commit e6c0b94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Iterable, NamedTuple, Optional

import dagster._check as check
from dagster._annotations import experimental, public
from dagster._annotations import beta, public
from dagster._serdes import whitelist_for_serdes
from dagster._utils.warnings import disable_dagster_warnings

Expand All @@ -12,7 +12,7 @@ class BackfillPolicyType(Enum):
MULTI_RUN = "MULTI_RUN"


@experimental
@beta
@whitelist_for_serdes
class BackfillPolicy(
NamedTuple(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@
)

import dagster._check as check
from dagster._annotations import (
experimental_param,
hidden_param,
only_allow_hidden_params_in_kwargs,
)
from dagster._annotations import beta_param, hidden_param, only_allow_hidden_params_in_kwargs
from dagster._config.config_schema import UserConfigSchema
from dagster._core.definitions.asset_check_spec import AssetCheckSpec
from dagster._core.definitions.asset_dep import (
Expand Down Expand Up @@ -131,7 +127,7 @@ def _validate_hidden_non_argument_dep_param(
return non_argument_deps


@experimental_param(param="backfill_policy")
@beta_param(param="backfill_policy")
@hidden_param(
param="non_argument_deps",
breaking_version="2.0.0",
Expand Down

0 comments on commit e6c0b94

Please sign in to comment.