#798: 1.06's handling of tracker http 301 redirects can cause a huge strain on tracker

This commit is contained in:
Charles Kerr 2008-03-18 19:33:08 +00:00
parent 128fa0aedf
commit cb854bd4cc
1 changed files with 3 additions and 2 deletions

View File

@ -512,11 +512,12 @@ onTrackerResponse( struct evhttp_request * req, void * vhash )
} }
else if( 300<=responseCode && responseCode<=399 ) else if( 300<=responseCode && responseCode<=399 )
{ {
dbgmsg( t, "got a redirect; retrying immediately" ); const int interval = 20;
dbgmsg( t, "got a redirect. retrying in %d seconds", interval );
/* it's a redirect... updateAddresses() has already /* it's a redirect... updateAddresses() has already
* parsed the redirect, all that's left is to retry */ * parsed the redirect, all that's left is to retry */
t->reannounceAt = time( NULL ); t->reannounceAt = time( NULL ) + interval;
t->manualAnnounceAllowedAt = time( NULL ) + t->announceMinIntervalSec; t->manualAnnounceAllowedAt = time( NULL ) + t->announceMinIntervalSec;
} }
else if( 400<=responseCode && responseCode<=499 ) else if( 400<=responseCode && responseCode<=499 )