mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-21 22:32:41 +01:00
No description
2daf9b16ae
Summary: See PHI1764. See PHI1802. Address two resolution behaviors for FutureProxy: - FutureProxy may throw an exception directly from iteration via "FutureIterator" (see PHI1764). This is wrong: futures should throw only when resolved. - FutureProxy can not change an exception into a result, or a result into an exception, or an exception into a different exception. Being able to proxy the full range of result and exception behavior is useful, particularly for Conduit (see PHI1802). Make "FutureProxy" more robust in how it handles exceptions from proxied futures. Test Plan: Used this script to raise an exception during result processing: ``` <?php require_once 'support/init/init-script.php'; final class ThrowingFutureProxy extends FutureProxy { protected function didReceiveResult($result) { throw new Exception('!'); } } $future = new ImmediateFuture('quack'); $proxy = new ThrowingFutureProxy($future); $iterator = new FutureIterator(array($proxy)); foreach ($iterator as $resolved) { try { $resolved->resolve(); } catch (Exception $ex) { echo "Caught exception properly on resolution.\n"; } } ``` Before this change, the exception is raised in the `foreach()` loop. After this change, the exception is raised at resolution time. Differential Revision: https://secure.phabricator.com/D21383 |
||
---|---|---|
bin | ||
externals | ||
resources | ||
scripts | ||
src | ||
support | ||
.arcconfig | ||
.arclint | ||
.arcunit | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
NOTICE | ||
README.md |
Arcanist is the command-line tool for Phabricator. It allows you to interact with Phabricator installs to send code for review, download patches, transfer files, view status, make API calls, and various other things. You can read more in the User Guide
For more information about Phabricator, see http://phabricator.org/.
LICENSE
Arcanist is released under the Apache 2.0 license except as otherwise noted.