# HG changeset patch # User Pierre-Yves David # Date 1499205690 -7200 # Node ID b62d13506860b3a4ec6b0b92a6fcb573e16f8e70 # Parent c9849bec227a83355e5c12e74abca6f77ce636c4 configitems: gather comment related to 'worker.backgroundclosemaxqueue' Thanks to Yuya for pointing this out. diff -r c9849bec227a -r b62d13506860 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:46:01 2017 +0200 +++ b/mercurial/configitems.py Wed Jul 05 00:01:30 2017 +0200 @@ -155,6 +155,8 @@ coreconfigitem('ui', 'quiet', default=False, ) +# Windows defaults to a limit of 512 open files. A buffer of 128 +# should give us enough headway. coreconfigitem('worker', 'backgroundclosemaxqueue', default=384, ) diff -r c9849bec227a -r b62d13506860 mercurial/vfs.py --- a/mercurial/vfs.py Fri Jun 30 03:46:01 2017 +0200 +++ b/mercurial/vfs.py Wed Jul 05 00:01:30 2017 +0200 @@ -547,8 +547,6 @@ if expectedcount > 0 and expectedcount < minfilecount: return - # Windows defaults to a limit of 512 open files. A buffer of 128 - # should give us enough headway. maxqueue = ui.configint('worker', 'backgroundclosemaxqueue') threadcount = ui.configint('worker', 'backgroundclosethreadcount')