Merge pull request #9246 from trofi/clarify-builder-uid-exhaustion

local-derivation-goal.cc: slightly clarify waiting message
This commit is contained in:
John Ericson 2023-10-26 16:31:49 -04:00 committed by GitHub
commit 232e236672
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -227,7 +227,7 @@ void LocalDerivationGoal::tryLocalBuild()
if (!buildUser) {
if (!actLock)
actLock = std::make_unique<Activity>(*logger, lvlWarn, actBuildWaiting,
fmt("waiting for UID to build '%s'", yellowtxt(worker.store.printStorePath(drvPath))));
fmt("waiting for a free build user ID for '%s'", yellowtxt(worker.store.printStorePath(drvPath))));
worker.waitForAWhile(shared_from_this());
return;
}