mirror of
https://github.com/vim/vim.git
synced 2025-11-07 10:17:28 -05:00
patch 9.0.0354: MS-Windows: starting a python server for test sometimes fails
Problem: MS-Windows: starting a python server for test sometimes fails. Solution: Increase the waiting time for the port.
This commit is contained in:
@@ -62,8 +62,8 @@ endfunc
|
|||||||
" Read the port number from the Xportnr file.
|
" Read the port number from the Xportnr file.
|
||||||
func GetPort()
|
func GetPort()
|
||||||
let l = []
|
let l = []
|
||||||
" with 200 it sometimes failed
|
" with 200 it sometimes failed, with 400 is rarily failed
|
||||||
for i in range(400)
|
for i in range(600)
|
||||||
try
|
try
|
||||||
let l = readfile("Xportnr")
|
let l = readfile("Xportnr")
|
||||||
catch
|
catch
|
||||||
|
|||||||
@@ -707,6 +707,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
354,
|
||||||
/**/
|
/**/
|
||||||
353,
|
353,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user