Skip to content

Commit d8ab6cf

Browse files
chore!: Deprecate request data source (#3024)
Remove RequestDataSource Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent de8babe commit d8ab6cf

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

sdk/python/feast/data_source.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -601,16 +601,6 @@ def source_datatype_to_feast_value_type() -> Callable[[str], ValueType]:
601601
raise NotImplementedError
602602

603603

604-
@typechecked
605-
class RequestDataSource(RequestSource):
606-
def __init__(self, *args, **kwargs):
607-
warnings.warn(
608-
"The 'RequestDataSource' class is deprecated and was renamed to RequestSource. Please use RequestSource instead. This class name will be removed in Feast 0.24.",
609-
DeprecationWarning,
610-
)
611-
super().__init__(*args, **kwargs)
612-
613-
614604
@typechecked
615605
class KinesisSource(DataSource):
616606
def validate(self, config: RepoConfig):

0 commit comments

Comments
 (0)