There was an error while loading. Please reload this page.
1 parent dcae160 commit 0342aa4Copy full SHA for 0342aa4
1 file changed
sdk/python/feast/repo_config.py
@@ -1,3 +1,4 @@
1
+import os
2
from pathlib import Path
3
from typing import Any
4
@@ -345,7 +346,7 @@ def load_repo_config(repo_path: Path) -> RepoConfig:
345
346
config_path = repo_path / "feature_store.yaml"
347
348
with open(config_path) as f:
- raw_config = yaml.safe_load(f)
349
+ raw_config = yaml.safe_load(os.path.expandvars(f.read()))
350
try:
351
c = RepoConfig(**raw_config)
352
c.repo_path = repo_path
0 commit comments