Skip to content

Commit fc9b767

Browse files
mavysavydavachals
andauthored
Have apply_total use the repo_config that's passed in as a parameter (makes it more compatible with custom wrapper code) (#2099)
* have apply_total use the repo_config that's passed in Signed-off-by: David Y Liu <davidyliuliu@gmail.com> * Update sdk/python/feast/repo_operations.py Co-authored-by: Achal Shah <achals@gmail.com> Co-authored-by: Achal Shah <achals@gmail.com>
1 parent 39b6e72 commit fc9b767

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/python/feast/repo_operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def apply_total(repo_config: RepoConfig, repo_path: Path, skip_source_validation
130130
from colorama import Fore, Style
131131

132132
os.chdir(repo_path)
133-
store = FeatureStore(repo_path=str(repo_path))
133+
store = FeatureStore(config=repo_config)
134134
project = store.project
135135
if not is_valid_name(project):
136136
print(

0 commit comments

Comments
 (0)