1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00

(trunk libT) use get_next_scrape_time() inside the scrape error handler.

get_next_scrape_time() was introduced in r12297. The rationale is that by rounding all scrape times to their nearest 10th second, they will tend to occur in batches and improve multiscrape.
This commit is contained in:
Jordan Lee 2011-04-07 20:00:26 +00:00
parent 4a5415e84c
commit 35eb016209

View file

@ -1183,7 +1183,7 @@ on_scrape_error( tr_tier * tier, const char * errmsg )
tierIncrementTracker( tier );
/* schedule a rescrape */
interval = getRetryInterval( tier->currentTracker );
interval = get_next_scrape_time( getRetryInterval( tier->currentTracker ) );
dbgmsg( tier, "Retrying scrape in %d seconds.", interval );
tr_torinf( tier->tor, "Retrying scrape in %d seconds.", interval );
tier->lastScrapeSucceeded = false;