diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-05-14 18:02:53 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-05-14 18:02:53 -0400 | 
| commit | c4dfdcb338aaeeb4e3adc4e1aef4f5b190ef5c57 (patch) | |
| tree | fd24a56ce624994da2b3f4d894cfb74510dc90da | |
| parent | 7fd22901774ff9dcdfbf4388550275e30200307f (diff) | |
partial fix for SH-3132 - reduce max concurrent http requests to same level as in release
| -rwxr-xr-x | indra/newview/lltexturefetch.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index efb6ed6079..e2af497a7d 100755 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -1161,7 +1161,7 @@ bool LLTextureFetchWorker::doWork(S32 param)  			//1, not openning too many file descriptors at the same time;  			//2, control the traffic of http so udp gets bandwidth.  			// -			static const S32 MAX_NUM_OF_HTTP_REQUESTS_IN_QUEUE = 24 ; +			static const S32 MAX_NUM_OF_HTTP_REQUESTS_IN_QUEUE = 8 ;  			if(mFetcher->getNumHTTPRequests() > MAX_NUM_OF_HTTP_REQUESTS_IN_QUEUE)  			{  				return false ; //wait. | 
