Comments
Patch
@@ -82,7 +82,8 @@
args - arguments to split into chunks, to pass to individual
workers
'''
- if worthwhile(ui, costperarg, len(args)):
+ enabled = ui.configbool('worker', 'enabled', True)
+ if enabled and worthwhile(ui, costperarg, len(args)):
return _platformworker(ui, func, staticargs, args)
return func(*staticargs + (args,))
@@ -2563,6 +2563,10 @@
directory updates in parallel on Unix-like systems, which greatly
helps performance.
+``enabled``
+ Whether to enable workers code to be used.
+ (default: true)
+
``numcpus``
Number of CPUs to use for parallel operations. A zero or
negative value is treated as ``use the default``.
@@ -1253,6 +1253,9 @@
coreconfigitem('worker', 'backgroundclosethreadcount',
default=4,
)
+coreconfigitem('worker', 'enabled',
+ default=True,
+)
coreconfigitem('worker', 'numcpus',
default=None,
)