Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dlt_pipeline_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def _load_pipeline_bundle_global_config_file(self) -> Dict[str, Any]:

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

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