diff --git a/.changes/unreleased/Breaking Changes-20230612-161159.yaml b/.changes/unreleased/Breaking Changes-20230612-161159.yaml new file mode 100644 index 00000000000..7d6eca90585 --- /dev/null +++ b/.changes/unreleased/Breaking Changes-20230612-161159.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: Updating this error message to point to the correct URL +time: 2023-06-12T16:11:59.181953+01:00 +custom: + Author: mirnawong1 + Issue: "7789" diff --git a/core/dbt/exceptions.py b/core/dbt/exceptions.py index 130ec4284cd..6af4e3436e2 100644 --- a/core/dbt/exceptions.py +++ b/core/dbt/exceptions.py @@ -703,7 +703,7 @@ def __init__(self): super().__init__(msg=self.get_message()) def get_message(self) -> str: - msg = "No adapters available. Learn how to install an adapter by going to https://docs.getdbt.com/docs/supported-data-platforms#adapter-installation" + msg = "No adapters available. Learn how to install an adapter by going to https://docs.getdbt.com/docs/connect-adapters#install-using-the-cli" return msg