Skip to content

Commit

Permalink
Oops, extraneous debugging.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.sixapart.com/svn/gearman/trunk@463 011c6a6d-750f-0410-a5f6-93fdcd050bc4
  • Loading branch information
chaz committed May 10, 2010
1 parent 1255b27 commit ee3cd1e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/Gearman/Client.pm
Expand Up @@ -91,10 +91,7 @@ sub get_job_server_status {
next if $err;

foreach my $line (@lines) {
unless ($line =~ /^(\S+)\s+(\d+)\s+(\d+)\s+(\d+)$/) {
warn "line: $line";
last;
}
last unless $line =~ /^(\S+)\s+(\d+)\s+(\d+)\s+(\d+)$/;

my ($job, $queued, $running, $capable) = ($1, $2, $3, $4);
$js_status->{$hostport}->{$job} = {
Expand Down

0 comments on commit ee3cd1e

Please sign in to comment.