Revert "Don't crash QP when GeoIP data is missing"

This commit is contained in:
Jared Johnson 2015-02-26 17:05:52 -06:00
parent c76c00e37c
commit 6f38bdf5ad

View File

@ -327,11 +327,8 @@ sub open_geoip_db {
# can't think of a good reason to load country if city data is present # can't think of a good reason to load country if city data is present
if (!$self->{_geoip_city}) { if (!$self->{_geoip_city}) {
$self->log(LOGDEBUG, "using default db"); $self->log(LOGDEBUG, "using default db");
eval { $self->{_geoip} = Geo::IP->new(); }; # loads default Country DB $self->{_geoip} = Geo::IP->new(); # loads default Country DB
if (!$self->{_geoip}) { warn "Missing GeoIP Country data!\n" if ! $self->{_geoip};
my $err = $@ || 'Unknown error';
warn "Missing GeoIP Country data:$err\n";
}
} }
} }