fix(ingest/dbt-cloud): use correct dbt cloud IDE urls (#7755)

This commit is contained in:
Harshal Sheth 2023-04-06 02:10:56 +05:30 committed by GitHub
parent 70e60847a2
commit 5bb0e60bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -417,4 +417,4 @@ class DBTCloudSource(DBTSourceBase):
def get_external_url(self, node: DBTNode) -> Optional[str]:
# TODO: Once dbt Cloud supports deep linking to specific files, we can use that.
return f"https://cloud.getdbt.com/next/accounts/{self.config.account_id}/projects/{self.config.project_id}/develop"
return f"https://cloud.getdbt.com/develop/{self.config.account_id}/projects/{self.config.project_id}"