##// END OF EJS Templates
py3: pass bytes to `configint` and `configbool`...
Raphaël Gomès -
r44095:794426e9 default
parent child Browse files
Show More
@@ -1112,13 +1112,13 b' class dirstate(object):'
1112 # Force Rayon (Rust parallelism library) to respect the number of
1112 # Force Rayon (Rust parallelism library) to respect the number of
1113 # workers. This is a temporary workaround until Rust code knows
1113 # workers. This is a temporary workaround until Rust code knows
1114 # how to read the config file.
1114 # how to read the config file.
1115 numcpus = self._ui.configint("worker", "numcpus")
1115 numcpus = self._ui.configint(b"worker", b"numcpus")
1116 if numcpus is not None:
1116 if numcpus is not None:
1117 encoding.environ.setdefault(
1117 encoding.environ.setdefault(
1118 b'RAYON_NUM_THREADS', b'%d' % numcpus
1118 b'RAYON_NUM_THREADS', b'%d' % numcpus
1119 )
1119 )
1120
1120
1121 workers_enabled = self._ui.configbool("worker", "enabled", True)
1121 workers_enabled = self._ui.configbool(b"worker", b"enabled", True)
1122 if not workers_enabled:
1122 if not workers_enabled:
1123 encoding.environ[b"RAYON_NUM_THREADS"] = b"1"
1123 encoding.environ[b"RAYON_NUM_THREADS"] = b"1"
1124
1124
General Comments 0
You need to be logged in to leave comments. Login now