From 848b85c15069a617a5cc00c996c48ae8d1192a1c Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Mon, 25 Jun 2012 02:52:27 -0400 Subject: [PATCH] geoip: no data is a skip, not a fail --- plugins/ident/geoip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ident/geoip b/plugins/ident/geoip index fda062e..2f6b635 100644 --- a/plugins/ident/geoip +++ b/plugins/ident/geoip @@ -140,7 +140,7 @@ sub connect_handler { $self->open_geoip_db(); my $c_code = $self->set_country_code() or do { - $self->log( LOGINFO, "fail: no results" ); + $self->log( LOGINFO, "skip, no results" ); return DECLINED; }; $self->qp->connection->notes('geoip_country', $c_code);