mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-09 16:32:39 +01:00
Parse Mercurial changeset evolution "instability" log field
Summary: See PHI718. Modern Mercurial with the "evolve" extension enabled may emit this field. Test Plan: As D19262. Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D19498
This commit is contained in:
parent
df7313bdf2
commit
222800a86e
1 changed files with 3 additions and 2 deletions
|
@ -175,8 +175,9 @@ final class ArcanistMercurialParser extends Phobject {
|
|||
$commit['bookmark'] = $value;
|
||||
break;
|
||||
case 'obsolete':
|
||||
// This is an extra field added by the "evolve" extension even
|
||||
// if HGPLAIN=1 is set. See PHI502.
|
||||
case 'instability':
|
||||
// These are extra fields added by the "evolve" extension even
|
||||
// if HGPLAIN=1 is set. See PHI502 and PHI718.
|
||||
break;
|
||||
default:
|
||||
throw new Exception(
|
||||
|
|
Loading…
Reference in a new issue