mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-12 18:02:39 +01:00
Stop arc from triggering bogus exceptions.
This commit is contained in:
parent
c44c4cf988
commit
db9f629499
1 changed files with 6 additions and 4 deletions
|
@ -117,6 +117,7 @@ try {
|
|||
$workflow->setWorkingCopy($working_copy);
|
||||
}
|
||||
|
||||
$set_guid = false;
|
||||
if ($need_conduit) {
|
||||
$conduit_uri = $working_copy->getConduitURI();
|
||||
if (!$conduit_uri) {
|
||||
|
@ -147,6 +148,7 @@ try {
|
|||
$workflow->setUserName($user_name);
|
||||
$user_phid = idx($connection, 'userPHID');
|
||||
if ($user_phid) {
|
||||
$set_guid = true;
|
||||
$workflow->setUserGUID($user_phid);
|
||||
}
|
||||
}
|
||||
|
@ -157,7 +159,7 @@ try {
|
|||
$workflow->setRepositoryAPI($repository_api);
|
||||
}
|
||||
|
||||
if ($need_auth && !$workflow->getUserGUID()) {
|
||||
if ($need_auth && !$set_guid) {
|
||||
$user_name = getenv('USER');
|
||||
$user_find_future = $conduit->callMethod(
|
||||
'user.find',
|
||||
|
|
Loading…
Reference in a new issue