File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python_packages/jupyter_lsp/jupyter_lsp Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,9 +81,9 @@ class LanguageServerSessionBase(
81
81
last_handler_message_at = Instance (datetime , allow_none = True )
82
82
last_server_message_at = Instance (datetime , allow_none = True )
83
83
84
- stop_timeout = Float (
84
+ stop_timeout_s = Float (
85
85
5 ,
86
- help = "timeout after which a process will be terminated forcefully" ,
86
+ help = "timeout in seconds after which a process will be terminated forcefully" ,
87
87
).tag (config = True )
88
88
queue_size = Float (
89
89
math .inf ,
@@ -177,7 +177,7 @@ async def cleanup(self):
177
177
await self .writer .close ()
178
178
self .writer = None
179
179
if self .process is not None :
180
- await self .stop_process (self .stop_timeout )
180
+ await self .stop_process (self .stop_timeout_s )
181
181
self .process = None
182
182
if self .from_lsp is not None :
183
183
await self .from_lsp .aclose ()
You can’t perform that action at this time.
0 commit comments