Skip to content

Commit

Permalink
fix: Start up issues in Python Feature server with HTTP Registry (#120)
Browse files Browse the repository at this point in the history
Co-authored-by: Bhargav Dodla <[email protected]>
  • Loading branch information
EXPEbdodla and Bhargav Dodla authored Jul 24, 2024
1 parent b67ade0 commit 28a0996
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions sdk/python/feast/expediagroup/provider/expedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from feast.infra.passthrough_provider import PassthroughProvider
from feast.repo_config import RepoConfig
from feast.stream_feature_view import StreamFeatureView
from feast.usage import set_usage_attribute

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -70,8 +69,6 @@ def update_infra(
entities_to_keep: Sequence[Entity],
partial: bool,
):
set_usage_attribute("provider", self.__class__.__name__)

if self.online_store:
if tables_to_delete:
logger.info(
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/feast/infra/registry/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ def list_saved_datasets(
project: str,
allow_cache: bool = False,
) -> List[SavedDataset]:
raise NotImplementedError("Method not implemented")
return []

def apply_validation_reference(
self,
Expand Down Expand Up @@ -657,7 +657,7 @@ def list_validation_references(
project: str,
allow_cache: bool = False,
) -> List[ValidationReference]:
raise NotImplementedError("Method not implemented")
return []

def proto(self) -> RegistryProto:
r = RegistryProto()
Expand Down

0 comments on commit 28a0996

Please sign in to comment.