From 6fea9dafaf7d02eccbab4009ee7b5f6a4d8d2c07 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 9 Apr 2020 18:43:55 +0100 Subject: [PATCH] yeack increase TimeoutMaxIdle again for now --- .../Servers/HttpServer/OSHttpServer/HttpClientContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpClientContext.cs b/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpClientContext.cs index bfdc8fadc6..9fa69d4f04 100644 --- a/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpClientContext.cs +++ b/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpClientContext.cs @@ -43,7 +43,7 @@ namespace OSHttpServer public int TimeoutRequestReceived = 30000; // 30 seconds // The difference between this and request received is on POST more time is needed before we get the full request. - public int TimeoutMaxIdle = 180000; // 3 minutes + public int TimeoutMaxIdle = 600000; // 3 minutes public int m_TimeoutKeepAlive = MAXKEEPALIVE; // 400 seconds before keepalive timeout public int m_maxRequests = MAXREQUESTS;