1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 17:41:48 +02:00

nix-store --serve: Implement log size limit

This commit is contained in:
Eelco Dolstra 2015-10-06 17:33:30 +02:00
parent 9ffc4f4363
commit 1abda8e173
4 changed files with 8 additions and 4 deletions

View file

@ -2854,7 +2854,8 @@ void DerivationGoal::handleChildOutput(int fd, const string & data)
printMsg(lvlError,
format("%1% killed after writing more than %2% bytes of log output")
% getName() % settings.maxLogSize);
timedOut(); // not really a timeout, but close enough
killChild();
done(BuildResult::LogLimitExceeded);
return;
}
if (verbosity >= settings.buildVerbosity)