Skip to content

Commit 271772e

Browse files
authored
Try adjusting max_wait
1 parent cc5d486 commit 271772e

File tree

1 file changed

+1
-1
lines changed
  • python_packages/jupyter_lsp/jupyter_lsp

1 file changed

+1
-1
lines changed

python_packages/jupyter_lsp/jupyter_lsp/stdio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class LspStdIoReader(LspStdIoBase):
6161

6262
@default("max_wait")
6363
def _default_max_wait(self):
64-
return 2.0 if os.name == "nt" else self.min_wait
64+
return 0.5 if os.name == "nt" else self.min_wait * 2
6565

6666
async def sleep(self):
6767
"""Simple exponential backoff for sleeping"""

0 commit comments

Comments
 (0)