diff --git a/src/dlt_pipeline_builder.py b/src/dlt_pipeline_builder.py index ed9dfa5..7493f3c 100644 --- a/src/dlt_pipeline_builder.py +++ b/src/dlt_pipeline_builder.py @@ -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."""