phase2: remove unused 'other_builds' property
authorThibaut VARÈNE <hacks@slashdirt.org>
Sat, 11 Nov 2023 15:11:25 +0000 (16:11 +0100)
committerPetr Štetiar <ynezz@true.cz>
Thu, 16 Nov 2023 08:57:19 +0000 (09:57 +0100)
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
phase2/master.cfg

index e19a7314cc67267d922c81040e09aa146f47f754..5e8b71cb9f9f42a83970814e917009cd2e876cf6 100644 (file)
@@ -61,7 +61,6 @@ c = BuildmasterConfig = {}
 
 worker_port = 9990
 persistent = False
-other_builds = 0
 tree_expire = 0
 git_ssh = False
 git_ssh_key = None
@@ -72,9 +71,6 @@ if ini.has_option("phase2", "port"):
 if ini.has_option("phase2", "persistent"):
        persistent = ini.getboolean("phase2", "persistent")
 
-if ini.has_option("phase2", "other_builds"):
-       other_builds = ini.getint("phase2", "other_builds")
-
 if ini.has_option("phase2", "expire"):
        tree_expire = ini.getint("phase2", "expire")
 
@@ -293,7 +289,7 @@ def GetDirectorySuffix(props):
 
 def GetNumJobs(props):
        if props.hasProperty("workername") and props.hasProperty("nproc"):
-               return ((int(props["nproc"]) / (max_builds[props["workername"]] + other_builds)) + 1)
+               return ((int(props["nproc"]) / max_builds[props["workername"]]) + 1)
        else:
                return 1