Skip to content

Commit eeeb710

Browse files
Update LSP command path to experimental bundle-lsp
The CLI moved the LSP server from `databricks bundle lsp` to `databricks experimental bundle-lsp`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent fac0145 commit eeeb710

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/databricks-vscode/src/bundle/BundleLSPClient.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {CliWrapper} from "../cli/CliWrapper";
88

99
/**
1010
* Manages the lifecycle of the DABs Language Server Protocol client.
11-
* Spawns `databricks bundle lsp` and connects via stdio to provide
11+
* Spawns `databricks experimental bundle-lsp` and connects via stdio to provide
1212
* deployment-aware features (document links, hover) for bundle YAML files.
1313
*/
1414
export class BundleLSPClient implements Disposable {
@@ -23,7 +23,7 @@ export class BundleLSPClient implements Disposable {
2323
// Stop existing client if running.
2424
await this.stop();
2525

26-
const args = ["bundle", "lsp"];
26+
const args = ["experimental", "bundle-lsp"];
2727
if (target) {
2828
args.push("--target", target);
2929
}
@@ -68,7 +68,7 @@ export class BundleLSPClient implements Disposable {
6868

6969
this.client = new LanguageClient(
7070
"databricks-bundle-lsp",
71-
"Databricks Bundle LSP",
71+
"Databricks Experimental Bundle LSP",
7272
serverOptions,
7373
clientOptions
7474
);

0 commit comments

Comments
 (0)