mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-26 00:32:41 +01:00
Limit arc branch
to 16 concurrent processes
Summary: Currently, this spawns 125 concurrent processes on my machine, which overflows some limit and gives me an error: PHP Warning: proc_open(): unable to create pipe Too many open files in /INSECURE/devtools/libphutil/src/future/exec/ExecFuture.php on line 491 Instead, limit parallelism to 16. The runtime is approximately the same for me, and dominated by other concerns (conduit calls). Test Plan: Ran `arc branch` successfully. Ran `arc branch --trace`, observed behavior. Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D4336
This commit is contained in:
parent
cf8d445c9f
commit
72b2b7b22c
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ EOTEXT
|
|||
|
||||
$branches = ipull($branches, null, 'name');
|
||||
|
||||
foreach (Futures($futures) as $name => $future) {
|
||||
foreach (Futures($futures)->limit(16) as $name => $future) {
|
||||
list($info) = $future->resolvex();
|
||||
list($hash, $epoch, $tree, $desc, $text) = explode("\1", trim($info), 5);
|
||||
|
||||
|
|
Loading…
Reference in a new issue