Scarier error message for redis failures

This commit is contained in:
Jared Johnson 2015-01-23 15:23:18 -06:00
parent 462a2ae367
commit 5a58e02e80

View File

@ -247,7 +247,7 @@ sub init_redis {
) or die 'Unknown error';
};
return 1 if ! $@;
$self->log(LOGERROR, "Unable to connect to redis store: $@");
$self->log(LOGCRIT, "Unable to connect to redis, GREYLISTING DISABLED: $@");
return 0;
}