##// END OF EJS Templates
configitems: gather comment related to 'worker.backgroundclosemaxqueue'...
marmoute -
r33231:b62d1350 default
parent child Browse files
Show More
@@ -155,6 +155,8 b" coreconfigitem('ui', 'interactive',"
155 coreconfigitem('ui', 'quiet',
155 coreconfigitem('ui', 'quiet',
156 default=False,
156 default=False,
157 )
157 )
158 # Windows defaults to a limit of 512 open files. A buffer of 128
159 # should give us enough headway.
158 coreconfigitem('worker', 'backgroundclosemaxqueue',
160 coreconfigitem('worker', 'backgroundclosemaxqueue',
159 default=384,
161 default=384,
160 )
162 )
@@ -547,8 +547,6 b' class backgroundfilecloser(object):'
547 if expectedcount > 0 and expectedcount < minfilecount:
547 if expectedcount > 0 and expectedcount < minfilecount:
548 return
548 return
549
549
550 # Windows defaults to a limit of 512 open files. A buffer of 128
551 # should give us enough headway.
552 maxqueue = ui.configint('worker', 'backgroundclosemaxqueue')
550 maxqueue = ui.configint('worker', 'backgroundclosemaxqueue')
553 threadcount = ui.configint('worker', 'backgroundclosethreadcount')
551 threadcount = ui.configint('worker', 'backgroundclosethreadcount')
554
552
General Comments 0
You need to be logged in to leave comments. Login now