From a0f768ad1c1d34e37c48d5d2f5b2902aa793d352 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 3 Apr 2009 12:27:35 +0000 Subject: [PATCH] * Lower the default Hydra scheduling priority for Nixpkgs jobs to prevent them from crowding out all other projects for hours. This is temporary - what we really need is a fairer scheduling policy. svn path=/nixpkgs/trunk/; revision=14856 --- pkgs/top-level/release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index c05140a86a1..51f318b725a 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -12,7 +12,7 @@ let prio = level: job: toJob job // { schedulingPriority = level; }; toJob = x: if builtins.isAttrs x then x else - { type = "job"; systems = x; schedulingPriority = 100; }; + { type = "job"; systems = x; schedulingPriority = 20; }; /* Perform a job on the given set of platforms. The function `f' is called by Hydra for each platform, and should return some job