Limit the number of texture fetchers to two for Avination as this gives a better user experience (less timeouts) with AVN server side throttling.

This commit is contained in:
Melanie
2013-04-22 23:46:28 +02:00
parent a4032e5e70
commit 6296b5157b

View File

@@ -1280,7 +1280,7 @@ bool LLTextureFetchWorker::doWork(S32 param)
}
else
{
if(((U32)mFetcher->getNumHTTPRequests() >= max_http_requests))
if(((U32)mFetcher->getNumHTTPRequests() >= 2))
{
return false ; //wait.
}