phacility/phabricator · error · Exception
This diff ("%s") is associated with a repository ("%s") whic
Error message
This diff ("%s") is associated with a repository ("%s") which could not be loaded. What it means
Error "This diff ("%s") is associated with a repository ("%s") which could not be loaded." thrown in phacility/phabricator.
Source
Thrown at src/applications/differential/storage/DifferentialDiff.php:591
public function getCircleCIGitHubRepositoryURI() {
$diff_phid = $this->getPHID();
$repository_phid = $this->getRepositoryPHID();
if (!$repository_phid) {
throw new Exception(
pht(
'This diff ("%s") is not associated with a repository. A diff '.
'must belong to a tracked repository to be built by CircleCI.',
$diff_phid));
}
$repository = id(new PhabricatorRepositoryQuery())
->setViewer(PhabricatorUser::getOmnipotentUser())
->withPHIDs(array($repository_phid))
->executeOne();
if (!$repository) {
throw new Exception(
pht(
'This diff ("%s") is associated with a repository ("%s") which '.
'could not be loaded.',
$diff_phid,
$repository_phid));
}
$staging_uri = $repository->getStagingURI();
if (!$staging_uri) {
throw new Exception(
pht(
'This diff ("%s") is associated with a repository ("%s") that '.
'does not have a Staging Area configured. You must configure a '.
'Staging Area to use CircleCI integration.',
$diff_phid,
$repository_phid));
}
View on GitHub (pinned to 5720a38cfe)
When it happens
Trigger: Thrown at src/applications/differential/storage/DifferentialDiff.php:591 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of phacility/phabricator@5720a38cfe (2026-08-21).
Data as JSON: /api/errors/cd3e01f3bf6017d1.
Report an issue: GitHub.