From 6296b5157b1871ce9349a5b0287fe366848c9d02 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 22 Apr 2013 23:46:28 +0200 Subject: [PATCH] Limit the number of texture fetchers to two for Avination as this gives a better user experience (less timeouts) with AVN server side throttling. --- indra/newview/lltexturefetch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index ecbb14097..edd141490 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -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. }