From 2ac35c11fa1c06b08ea6851846e0c377feddb381 Mon Sep 17 00:00:00 2001 From: Michiel De Smet Date: Thu, 10 Oct 2024 10:55:13 -0700 Subject: [PATCH] Await for adapter type (#1459) --- src/dbt_client/dbtCloudIntegration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbt_client/dbtCloudIntegration.ts b/src/dbt_client/dbtCloudIntegration.ts index accbd2147..1c696cadc 100644 --- a/src/dbt_client/dbtCloudIntegration.ts +++ b/src/dbt_client/dbtCloudIntegration.ts @@ -238,7 +238,7 @@ export class DBTCloudProjectIntegration } if (!this.adapterType) { // We only fetch the adapter type once, as it may impact compilation preview otherwise - this.findAdapterType(); + await this.findAdapterType(); } if (!this.version) { await this.findVersion();