You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The extension currently does not restart the lsp when the connection closes (e.g., due to a crash). This could be enhanced with either retrying atleast once or giving users the option to configure max-retries.
{
..."configuration": {
"properties": {
"sprocket.server.maxRetries": {
"type": "number",
"default": 1,
"description": "Maximum number of times to attempt restarting the Sprocket server after termination."
},
}
}
...
}
We can add a initializationFailedHandler to verify if sprocket was initialized or not and attempt to restart the lsp based on that
The extension currently does not restart the lsp when the connection closes (e.g., due to a crash). This could be enhanced with either retrying atleast once or giving users the option to configure
max-retries
.We can add a
initializationFailedHandler
to verify if sprocket was initialized or not and attempt to restart the lsp based on thatThe text was updated successfully, but these errors were encountered: