Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/languageClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { LanguageClient, LanguageClientOptions, State, StreamInfo } from 'vscode
import type { RequestClient } from './aspectValidation';
import type { ExtensionLogger } from './outputChannel';

const CLIENT_START_TIMEOUT_MS = 20_000;
const CLIENT_START_TIMEOUT_MS = 60_000;

export class TurtleLanguageClient implements RequestClient {
private client: LanguageClient;
Expand Down
2 changes: 1 addition & 1 deletion src/languageServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as net from 'node:net';
import type { ExtensionLogger } from './outputChannel';
import { JAVA_OPTIONS } from './constants';

const SERVER_READY_TIMEOUT_MS = 20_000;
const SERVER_READY_TIMEOUT_MS = 60_000;
const SERVER_READY_RETRY_DELAY_MS = 250;

export class TurtleLanguageServer {
Expand Down
Loading