From: Robert 'phaylon' Sedlacek Date: Sat, 4 Aug 2012 01:19:17 +0000 (+0000) Subject: removed plain alarm timeout X-Git-Tag: v0.001_001~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=83656fb30d13f9542f34451ef5f75561d0459da3;p=scpubgit%2FSystem-Introspector.git removed plain alarm timeout --- diff --git a/lib/System/Introspector/Gatherer.pm b/lib/System/Introspector/Gatherer.pm index ef43727..d88f590 100644 --- a/lib/System/Introspector/Gatherer.pm +++ b/lib/System/Introspector/Gatherer.pm @@ -10,7 +10,6 @@ has introspectors => (is => 'ro', required => 1); sub gather_all { my ($self) = @_; my %report; - alarm($ENV{SI_GATHER_TIMEOUT} || 60*60); for my $spec (@{ $self->introspectors }) { my ($base, $args) = @$spec; $report{$base} = use_module("System::Introspector::Probe::$base")