Skip to content

Commit

Permalink
fix: Dump repo_config by alias (#4063)
Browse files Browse the repository at this point in the history
dump-repo-config-alias Dump repo_config by alias

Signed-off-by: Alex Vinnik <alex.vinnik@sailpoint.com>
  • Loading branch information
alex-vinnik-sp committed Apr 2, 2024
1 parent 26391b0 commit e4bef67
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -309,7 +309,7 @@ def _create_kubernetes_job(self, job_id, paths, feature_view):
def _create_configuration_map(self, job_id, paths, feature_view, namespace):
"""Create a Kubernetes configmap for this job"""

feature_store_configuration = yaml.dump(self.repo_config.dict())
feature_store_configuration = yaml.dump(self.repo_config.dict(by_alias=True))

materialization_config = yaml.dump(
{"paths": paths, "feature_view": feature_view.name}
Expand Down

0 comments on commit e4bef67

Please sign in to comment.