mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +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);
|
$workflow->setWorkingCopy($working_copy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$set_guid = false;
|
||||||
if ($need_conduit) {
|
if ($need_conduit) {
|
||||||
$conduit_uri = $working_copy->getConduitURI();
|
$conduit_uri = $working_copy->getConduitURI();
|
||||||
if (!$conduit_uri) {
|
if (!$conduit_uri) {
|
||||||
|
@ -147,6 +148,7 @@ try {
|
||||||
$workflow->setUserName($user_name);
|
$workflow->setUserName($user_name);
|
||||||
$user_phid = idx($connection, 'userPHID');
|
$user_phid = idx($connection, 'userPHID');
|
||||||
if ($user_phid) {
|
if ($user_phid) {
|
||||||
|
$set_guid = true;
|
||||||
$workflow->setUserGUID($user_phid);
|
$workflow->setUserGUID($user_phid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -157,7 +159,7 @@ try {
|
||||||
$workflow->setRepositoryAPI($repository_api);
|
$workflow->setRepositoryAPI($repository_api);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($need_auth && !$workflow->getUserGUID()) {
|
if ($need_auth && !$set_guid) {
|
||||||
$user_name = getenv('USER');
|
$user_name = getenv('USER');
|
||||||
$user_find_future = $conduit->callMethod(
|
$user_find_future = $conduit->callMethod(
|
||||||
'user.find',
|
'user.find',
|
||||||
|
|
Loading…
Reference in a new issue