Skip to content

Commit 82259d4

Browse files
committed
docs
Signed-off-by: Achal Shah <[email protected]>
1 parent 4aa2ba7 commit 82259d4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

sdk/python/feast/repo_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class RepoConfig(FeastBaseModel):
141141

142142
go_feature_retrieval: Optional[bool] = False
143143

144-
entity_key_serialization_version: StrictInt = 0
144+
entity_key_serialization_version: StrictInt = 1
145145
""" Entity key serialization version: This version is used to control what serialization scheme is
146146
used when writing data to the online store.
147147
A value <= 1 uses the serialization scheme used by feast up to Feast 0.22.

sdk/python/tests/unit/infra/test_key_encoding_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_serialize_entity_key():
2121
entity_key_serialization_version=2,
2222
)
2323

24-
# Old serilization scheme, should fail.
24+
# Old serialization scheme, should fail.
2525
with pytest.raises(BaseException):
2626
serialize_entity_key(
2727
EntityKeyProto(

0 commit comments

Comments
 (0)