turn off KeepAlive

This commit is contained in:
UbitUmarov
2015-08-24 07:38:33 +01:00
parent c3e5519bf3
commit 018d855f28
4 changed files with 13 additions and 13 deletions

View File

@@ -264,7 +264,7 @@ namespace OpenSim.Region.ClientStack.Linden
response["int_response_code"] = 500;
response["str_response_string"] = "Script timeout";
response["content_type"] = "text/plain";
response["keepalive"] = true;
response["keepalive"] = false;
response["reusecontext"] = false;
return response;
@@ -285,7 +285,7 @@ namespace OpenSim.Region.ClientStack.Linden
response["int_response_code"] = 500;
response["str_response_string"] = "Script timeout";
response["content_type"] = "text/plain";
response["keepalive"] = true;
response["keepalive"] = false;
response["reusecontext"] = false;
lock (responses)