Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions sdk/python/feast/infra/compute_engines/kubernetes/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ def run(self):
logging.basicConfig(level=logging.INFO)

with open("/var/feast/feature_store.yaml") as f:
feast_config = yaml.load(f, Loader=yaml.Loader)
feast_config = yaml.safe_load(f)

with open("/var/feast/materialization_config.yaml") as b:
materialization_cfg = yaml.load(b, Loader=yaml.Loader)
materialization_cfg = yaml.safe_load(b)

config = RepoConfig(**feast_config)
store = FeatureStore(config=config)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class FeatureServiceSpec(google.protobuf.message.Message):
"""Name of Feast project that this Feature Service belongs to."""
@property
def features(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[feast.core.FeatureViewProjection_pb2.FeatureViewProjection]:
"""Represents a projection that's to be applied on top of the FeatureView.
"""Represents a projection that's to be applied on top of the FeatureView.
Contains data such as the features to use from a FeatureView.
"""
@property
Expand Down
Loading