We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e334aa commit 74c4038Copy full SHA for 74c4038
robotcode/language_server/robotframework/protocol.py
@@ -36,7 +36,6 @@
36
from .parts.selection_range import RobotSelectionRangeProtocolPart
37
from .parts.semantic_tokens import RobotSemanticTokenProtocolPart
38
from .parts.signature_help import RobotSignatureHelpProtocolPart
39
-from .utils.process_pool import shutdown_process_pool
40
from .utils.version import get_robot_version
41
42
if TYPE_CHECKING:
@@ -115,7 +114,7 @@ def __init__(self, server: "RobotLanguageServer"):
115
114
116
@_logger.call
117
async def _on_shutdown(self, sender: Any) -> None:
118
- shutdown_process_pool()
+ pass
119
120
121
async def _on_initialize(self, sender: Any, initialization_options: Optional[Any] = None) -> None:
0 commit comments