diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-10 13:13:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-10 13:13:29 +0000 |
commit | a7eccc3fde98557b9f8975a03a40712e0a40fa74 (patch) | |
tree | 007a0c2966eb074fcf3978f9502e126cae2ae9f6 /urpm/parallel_ka_run.pm | |
parent | c84ced75ca6a90579bdd530c08dfc3b8272c9273 (diff) | |
download | urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar.gz urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar.bz2 urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.tar.xz urpmi-a7eccc3fde98557b9f8975a03a40712e0a40fa74.zip |
fix debug message
Diffstat (limited to 'urpm/parallel_ka_run.pm')
-rw-r--r-- | urpm/parallel_ka_run.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm index 1d9cb5d6..a51afe58 100644 --- a/urpm/parallel_ka_run.pm +++ b/urpm/parallel_ka_run.pm @@ -50,9 +50,9 @@ sub urpm_popen { while (my $s = <$fh>) { chomp $s; - $urpm->{debug}("parallel_ka_run: $node: received: $s") if $urpm->{debug}; my ($node, $s_) = _parse_rshp_output($s) or next; + $urpm->{debug}("parallel_ka_run: $node: received: $s_") if $urpm->{debug}; $do->($node, $s_) or last; } close $fh or $urpm->{fatal}(1, N("rshp failed, maybe a node is unreacheable")); |