Skip to content

Commit 2250333

Browse files
fix(config): Allow using YAML format for global config file (#63)
1 parent a929983 commit 2250333

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.13.0
1+
v0.13.1

src/dlt_pipeline_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def _load_pipeline_bundle_global_config_file(self) -> Dict[str, Any]:
226226

227227
pipeline_config_path = existing_configs[0]
228228
self.logger.info("Retrieving Pipeline Global Config From: %s", pipeline_config_path)
229-
return utility.get_json_from_file(pipeline_config_path, False) or {}
229+
return utility.load_config_file_auto(pipeline_config_path, False) or {}
230230

231231
def _load_merged_config(self) -> None:
232232
"""Load and merge global and pipeline-specific configurations."""

0 commit comments

Comments
 (0)