diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2018-10-15 01:34:47 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2018-10-15 01:34:47 +0200 |
commit | b80458f48eeab1469d48fa334e5fafa218536ff2 (patch) | |
tree | 08a01b1d8d8d0bde0302e1a34d9c505858d4cb4c /ulri | |
parent | 8258dcc8fd346aa2036a1fc469c41dfca2274f5d (diff) | |
download | iurt-b80458f48eeab1469d48fa334e5fafa218536ff2.tar iurt-b80458f48eeab1469d48fa334e5fafa218536ff2.tar.gz iurt-b80458f48eeab1469d48fa334e5fafa218536ff2.tar.bz2 iurt-b80458f48eeab1469d48fa334e5fafa218536ff2.tar.xz iurt-b80458f48eeab1469d48fa334e5fafa218536ff2.zip |
remove unused parameter
Diffstat (limited to 'ulri')
-rwxr-xr-x | ulri | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -298,7 +298,7 @@ foreach my $prefix (keys %pkg_tree) { unless ($timeout || $zombie || $ended) { # Everything is fine, build is continuing! # Kill it if that package had failed on a mandatory arch - if (check_if_mandatory_arch_failed($media, $prefix, $ent, $config)) { + if (check_if_mandatory_arch_failed($media, $ent, $config)) { ssh($remote, "kill -14 $pid"); } next bot; @@ -388,7 +388,7 @@ foreach my $prefix (keys %pkg_tree) { next if $error; if ($done) { - if (check_if_mandatory_arch_failed($media, $prefix, $ent, $config)) { + if (check_if_mandatory_arch_failed($media, $ent, $config)) { # Discard this arch as another mandatory one failed cleanup_failed_build($todo_dir, $done_dir, $fail_dir, $prefix, $ent, $media, $arch, $config); } else { |