Skip to content
Snippets Groups Projects
Commit c4dfdcb3 authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

partial fix for SH-3132 - reduce max concurrent http requests to same level as in release

parent 7fd22901
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment