From e7da44c8621fc47d5c8951be6a68a6eac230daf9 Mon Sep 17 00:00:00 2001 From: Chapman Siu Date: Fri, 2 Jul 2021 07:59:57 +1000 Subject: [PATCH 1/2] fix typo Signed-off-by: Chapman Siu --- sdk/python/feast/feature_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/feast/feature_view.py b/sdk/python/feast/feature_view.py index c9cac6a29c6..03fd2251385 100644 --- a/sdk/python/feast/feature_view.py +++ b/sdk/python/feast/feature_view.py @@ -182,7 +182,7 @@ def to_proto(self) -> FeatureViewProto: ttl_duration = Duration() ttl_duration.FromTimedelta(self.ttl) - print(f"Stream soruce: {self.stream_source}, {type(self.stream_source)}") + print(f"Stream source: {self.stream_source}, {type(self.stream_source)}") spec = FeatureViewSpecProto( name=self.name, From f6cedec6ddf399f08068e32c060c2b9e562547b3 Mon Sep 17 00:00:00 2001 From: Chapman Siu Date: Fri, 2 Jul 2021 08:11:59 +1000 Subject: [PATCH 2/2] removing line Signed-off-by: Chapman Siu --- sdk/python/feast/feature_view.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/python/feast/feature_view.py b/sdk/python/feast/feature_view.py index 03fd2251385..9728ad20925 100644 --- a/sdk/python/feast/feature_view.py +++ b/sdk/python/feast/feature_view.py @@ -182,8 +182,6 @@ def to_proto(self) -> FeatureViewProto: ttl_duration = Duration() ttl_duration.FromTimedelta(self.ttl) - print(f"Stream source: {self.stream_source}, {type(self.stream_source)}") - spec = FeatureViewSpecProto( name=self.name, entities=self.entities,