1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00

In "phutil_passthru()", "resolve()" the future rather than calling "execute()" directly

Summary:
See PHI1862. This code calls "execute()" on the future directly, but that skips some steps -- notably, ServiceProfiler hooks.

Call "resolve()", which has the same effect but includes desirable/expected side effects.

Test Plan: Changed a workflow to run "phutil_passthru('ls')", ran it with "--trace". Before: no execution in trace; after: execution in trace.

Differential Revision: https://secure.phabricator.com/D21470
This commit is contained in:
epriestley 2020-09-18 11:19:53 -07:00
parent 563dc2a993
commit a716c4e55f

View file

@ -47,7 +47,7 @@ function exec_manual($cmd /* , ... */) {
*/
function phutil_passthru($cmd /* , ... */) {
$args = func_get_args();
return newv('PhutilExecPassthru', $args)->execute();
return newv('PhutilExecPassthru', $args)->resolve();
}