Closed mdesmet closed 4 weeks ago
The changes in this pull request focus on the get_target_names
method within the DbtProject
class in the dbt_core_integration.py
file. The logic has been updated to use self.config.profile_name
for accessing the profile, instead of self.project_name
. This adjustment aims to ensure the correct profile is utilized for retrieving outputs. Additionally, the method retains its check for the presence of "outputs" in the profile and replaces the old variable project
with profile
to better align with the updated configuration management.
File | Change Summary |
---|---|
dbt_core_integration.py | Modified get_target_names method to reference self.config.profile_name instead of self.project_name . Removed variable project , replaced with profile . Retained condition for checking "outputs" presence. |
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Overview
Problem
Describe the problem you are solving. Mention the ticket/issue if applicable.
Solution
Describe the implemented solution. Add external references if needed.
Screenshot/Demo
A picture is worth a thousand words. Please highlight the changes if applicable.
How to test
Checklist
README.md
updated and added information about my changeSummary by CodeRabbit
New Features
Bug Fixes