Subject: | Use of uninitialized value in subroutine entry at Transparent.pm line 386 |
This program works fine the first time and when not using
HTTP::Cache::Transparent, however on subsequent calls it complains about
the use on an unintialixzed variable:
#!/usr/bin/perl -w
use strict;
use warnings;
use LWP::Simple;
use HTTP::Cache::Transparent;
HTTP::Cache::Transparent::init({
BasePath => '/var/cache/http-cache-transparent',
});
my $data = get('http://www.nysb.org/robots.txt');