Skip to content

Commit 3965eee

Browse files
* Update docs/reference/feature-servers/python-feature-server.md
* fixing the integration test failure. Signed-off-by: lrangine <19699092+lokeshrangineni@users.noreply.github.com>
1 parent e82d5bb commit 3965eee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/python/tests/integration/online_store/test_remote_online_store.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,9 @@ def _overwrite_remote_client_feature_store_yaml(
228228
ssl_cert_path: str = "",
229229
):
230230
repo_config = os.path.join(repo_path, "feature_store.yaml")
231-
config_content = dedent(
231+
232+
config_content = "entity_key_serialization_version: 2\n" + auth_config
233+
config_content += dedent(
232234
f"""
233235
project: {PROJECT_NAME}
234236
registry: {registry_path}
@@ -242,7 +244,5 @@ def _overwrite_remote_client_feature_store_yaml(
242244
if ssl_cert_path:
243245
config_content += f" ssl_cert_path: {ssl_cert_path}\n"
244246

245-
config_content += " entity_key_serialization_version: 2\n" + auth_config
246-
247247
with open(repo_config, "w") as repo_config_file:
248248
repo_config_file.write(config_content)

0 commit comments

Comments
 (0)