fix: reduce LSP timeout to 3 seconds

This commit is contained in:
CJ van den Berg 2024-10-22 21:08:03 +02:00
parent 1b3ad42398
commit a46c75da63
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -12,7 +12,7 @@ const Self = @This();
const module_name = @typeName(Self);
const sp_tag = "child";
const debug_lsp = true;
const lsp_request_timeout = std.time.ns_per_s * 30;
const lsp_request_timeout = std.time.ns_per_s * 3;
const OutOfMemoryError = error{OutOfMemory};
const SendError = error{SendFailed};