Skip to content

Commit

Permalink
Revert "Make queries share the same server by default (#270)" (#355)
Browse files Browse the repository at this point in the history
This reverts commit 64c9d7e.

The underlying issue that this addresses is now fixed in Bazel 7.1.0. See #216 and bazelbuild/bazel#21505.
  • Loading branch information
cameron-martin authored Mar 12, 2024
1 parent f2426e4 commit a7bb6ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@
},
"bazel.queriesShareServer": {
"type": "boolean",
"default": true,
"description": "Use the same Bazel server for queries and builds. By default, vscode-bazel uses the same server for queries and builds in order to have it easier for the user to set up the plugin. However, you may experience degraded performance in Visual Studio Code for operations that require queries. You can disable this setting so that queries and builds can be executed in parallel. Keep in mind that you might get some errors after disabling this setting if you do not configure it properly. See https://github.com/bazelbuild/vscode-bazel/issues/265."
"default": false,
"description": "Use the same Bazel server for queries and builds. By default, vscode-bazel uses a separate server for queries so that they can be executed in parallel with builds. You can enable this setting if running multiple Bazel servers has a negative performance impact on your system, but you may experience degraded performance in Visual Studio Code for operations that require queries."
},
"bazel.queryOutputBase": {
"type": "string",
Expand Down

0 comments on commit a7bb6ff

Please sign in to comment.