Skip to content

Commit

Permalink
[ci] silence during test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Feb 1, 2016
1 parent bff8763 commit a3e5011
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/vendor/diststats/mkdiststats
Expand Up @@ -250,9 +250,9 @@ sub handle_start($)
#print Dumper(\%attrs) . "\n";
my $package = $attrs{"package"};
my $client = $attrs{"workerid"};
my $readytime = $attrs{"readytime"};
my $starttime = $attrs{"starttime"};
my $endtime = $attrs{"endtime"};
my $readytime = $attrs{"readytime"} || 0;
my $starttime = $attrs{"starttime"} || 0;
my $endtime = $attrs{"endtime"} || 0;

return unless $package;
return unless exists $deps{$package};
Expand Down

0 comments on commit a3e5011

Please sign in to comment.