From: Salve J. N. <sj...@us...> - 2004-10-18 07:45:13
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Cache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26968/lib/OpenInteract2/Cache Modified Files: File.pm Log Message: Change cache directory config directive to reflect documentation and existing example server.ini config Index: File.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Cache/File.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** File.pm 18 Feb 2004 05:25:27 -0000 1.9 --- File.pm 18 Oct 2004 07:45:05 -0000 1.10 *************** *** 24,34 **** # set in the config object ! unless ( -d $cache_conf->{dir} ) { $log->error( "Cannot create a filesystem cache without a valid ", ! "directory. (Given: $cache_conf->{dir})" ); return undef; } ! my $cache_dir = $cache_conf->{dir}; my $max_size = $cache_conf->{max_size}; my $default_expire = $cache_conf->{default_expire}; --- 24,34 ---- # set in the config object ! unless ( -d $cache_conf->{directory} ) { $log->error( "Cannot create a filesystem cache without a valid ", ! "directory. (Given: $cache_conf->{directory})" ); return undef; } ! my $cache_dir = $cache_conf->{directory}; my $max_size = $cache_conf->{max_size}; my $default_expire = $cache_conf->{default_expire}; *************** *** 134,136 **** =head1 AUTHORS ! Chris Winters E<lt>ch...@cw...E<gt> \ No newline at end of file --- 134,136 ---- =head1 AUTHORS ! Chris Winters E<lt>ch...@cw...E<gt> |