Skip to content

Commit 81d63fa

Browse files
committed
fix(langserver): disable on-demand startup for the documentation server to ensure it launches on initialization
1 parent b54cc93 commit 81d63fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@
12741274
},
12751275
"robotcode.documentationServer.startOnDemand": {
12761276
"type": "boolean",
1277-
"default": true,
1277+
"default": false,
12781278
"description": "Starts the internal HTTP server only if needed."
12791279
}
12801280
}

packages/language_server/src/robotcode/language_server/robotframework/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class RoboTidyConfig(ConfigBase):
5252
class DocumentationServerConfig(ConfigBase):
5353
start_port: int = 3100
5454
end_port: int = 3199
55-
start_on_demand: bool = True
55+
start_on_demand: bool = False
5656

5757

5858
@config_section("robotcode.inlayHints")

0 commit comments

Comments
 (0)