# HG changeset patch # User Pierre-Yves David # Date 2017-06-30 01:46:01 # Node ID c9849bec227a83355e5c12e74abca6f77ce636c4 # Parent 4531a967e7f1444db754b100f40c91c0c30d12ac configitems: register the 'worker.numcpus' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -164,3 +164,6 @@ coreconfigitem('worker', 'backgroundclos coreconfigitem('worker', 'backgroundclosethreadcount', default=4, ) +coreconfigitem('worker', 'numcpus', + default=None, +)