mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 05:57:54 +00:00
This commit is contained in:
parent
4fd971f005
commit
0be50427fb
|
@ -1064,8 +1064,7 @@ sub get_job_with_sshlogin {
|
|||
if($::oodebug and not defined $job->{'commandline'}) {
|
||||
Carp::confess("get_job_with_sshlogin job->commandline should never be empty");
|
||||
}
|
||||
my $next_command_line = $job->replaced();
|
||||
my $clean_command = $next_command_line;
|
||||
my $clean_command = $job->replaced();
|
||||
if($clean_command =~ /^\s*$/) {
|
||||
# Do not run empty lines
|
||||
if(not $Global::JobQueue->empty()) {
|
||||
|
@ -1089,6 +1088,8 @@ sub get_job_with_sshlogin {
|
|||
# Find another job to run
|
||||
my $nextjob;
|
||||
if(not $Global::JobQueue->empty()) {
|
||||
# This can potentially recurse for all args
|
||||
no warnings 'recursion';
|
||||
$nextjob = get_job_with_sshlogin($sshlogin);
|
||||
}
|
||||
# Push the command back on the queue
|
||||
|
|
4
testsuite/tests-to-run/test50.sh
Normal file
4
testsuite/tests-to-run/test50.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo '### Test fix #32191'
|
||||
seq 1 150 | parallel -j9 --retries 2 -S localhost,: "/bin/non-existant 2>/dev/null"
|
1
testsuite/wanted-results/test50
Normal file
1
testsuite/wanted-results/test50
Normal file
|
@ -0,0 +1 @@
|
|||
### Test fix #32191
|
Loading…
Reference in a new issue