mirror of
https://github.com/NixOS/nix
synced 2025-06-28 22:01:15 +02:00
Nix daemon: respect build timeout from the client
This commit is contained in:
parent
08d96ffad0
commit
934cf2d1f4
2 changed files with 5 additions and 4 deletions
|
@ -551,7 +551,10 @@ static void performOp(unsigned int clientVersion,
|
|||
for (unsigned int i = 0; i < n; i++) {
|
||||
string name = readString(from);
|
||||
string value = readString(from);
|
||||
settings.set("untrusted-" + name, value);
|
||||
if (name == "build-timeout")
|
||||
string2Int(value, settings.buildTimeout);
|
||||
else
|
||||
settings.set("untrusted-" + name, value);
|
||||
}
|
||||
}
|
||||
startWork();
|
||||
|
@ -895,8 +898,6 @@ static void daemonLoop()
|
|||
|
||||
void run(Strings args)
|
||||
{
|
||||
bool daemon = false;
|
||||
|
||||
for (Strings::iterator i = args.begin(); i != args.end(); ) {
|
||||
string arg = *i++;
|
||||
if (arg == "--daemon") /* ignored for backwards compatibility */;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue