[Slim-Checkins] r11080 - /trunk/server/Slim/Networking/Async/HTTP.pm
andy at svn.slimdevices.com
andy at svn.slimdevices.com
Tue Jan 2 10:15:17 PST 2007
Author: andy
Date: Tue Jan 2 10:15:17 2007
New Revision: 11080
URL: http://svn.slimdevices.com?rev=11080&view=rev
Log:
RadioTime found one case where the redirect limit is too low, increasing it to 7 which is what LWP uses
Modified:
trunk/server/Slim/Networking/Async/HTTP.pm
Modified: trunk/server/Slim/Networking/Async/HTTP.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Networking/Async/HTTP.pm?rev=11080&r1=11079&r2=11080&view=diff
==============================================================================
--- trunk/server/Slim/Networking/Async/HTTP.pm (original)
+++ trunk/server/Slim/Networking/Async/HTTP.pm Tue Jan 2 10:15:17 2007
@@ -55,7 +55,7 @@
__PACKAGE__->mk_classaccessor( bufsize => 1024 );
# Max redirects to follow
-__PACKAGE__->mk_classaccessor( maxRedirect => 3 );
+__PACKAGE__->mk_classaccessor( maxRedirect => 7 );
sub new_socket {
my $self = shift;
More information about the checkins
mailing list