diff --git a/packages/databricks-vscode/package.json b/packages/databricks-vscode/package.json index 2a18106ba..815e9f6c5 100644 --- a/packages/databricks-vscode/package.json +++ b/packages/databricks-vscode/package.json @@ -686,7 +686,7 @@ }, { "view": "configurationView", - "contents": "Select a folder where you want to create a new Databricks project using a [template](https://docs.databricks.com/en/dev-tools/bundles/templates.html#databricks-asset-bundle-project-templates):\n[Create a new project](command:databricks.bundle.initNewProject)", + "contents": "Select a folder where you want to create a new Databricks project using a [template](https://docs.databricks.com/en/dev-tools/bundles/templates#template-project-structure):\n[Create a new project](command:databricks.bundle.initNewProject)", "when": "workspaceFolderCount > 0 && databricks.context.initialized && !databricks.context.isBundleProject" }, { diff --git a/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts b/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts index e3676e7d2..1bed407ba 100644 --- a/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts +++ b/packages/databricks-vscode/src/bundle/bundleAutocompleteProvider.ts @@ -16,7 +16,7 @@ export async function registerBundleAutocompleteProvider( const dabsUriScheme = "dabs"; // URI for bundle root config json schema - const rootConfigSchemaUri = `${dabsUriScheme}:///databricks-asset-bundles.json`; + const rootConfigSchemaUri = `${dabsUriScheme}:///declarative-automation-bundles.json`; const extensionYaml = extensions.getExtension("redhat.vscode-yaml"); if (extensionYaml) {