Skip to content
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

[core-api][experimental] observable_source_asset, multi_observable_source_asset #26706

Open
wants to merge 1 commit into
base: 12-23-_core-apis_experimental_definitions.get_all_asset_specs_definitions.with_reconstruction_metadata
Choose a base branch
from
Open
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 @@ -2,7 +2,7 @@
from typing import AbstractSet, Any, Callable, Optional, Union, overload # noqa: UP035

import dagster._check as check
from dagster._annotations import experimental, hidden_param
from dagster._annotations import hidden_param
from dagster._core.definitions.asset_check_spec import AssetCheckSpec
from dagster._core.definitions.asset_spec import AssetExecutionType, AssetSpec
from dagster._core.definitions.assets import AssetsDefinition
Expand Down Expand Up @@ -64,7 +64,6 @@ def observable_source_asset(
breaking_version="1.10.0",
additional_warn_text="use freshness checks instead.",
)
@experimental
def observable_source_asset(
observe_fn: Optional[SourceAssetObserveFunction] = None,
*,
Expand Down Expand Up @@ -225,7 +224,6 @@ def __call__(self, observe_fn: SourceAssetObserveFunction) -> SourceAsset:
)


@experimental
def multi_observable_source_asset(
*,
specs: Sequence[AssetSpec],
Expand Down