aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting
diff options
context:
space:
mode:
authorUbitUmarov2017-05-26 00:53:21 +0100
committerUbitUmarov2017-05-26 00:53:21 +0100
commit5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a (patch)
treec1f678481c012c7a4a3b70598b9a21f2d3f7068d /OpenSim/Region/CoreModules/Scripting
parentmake BlockingQueue.Dequeue timeouts more coerent (just less than watchdog tim... (diff)
downloadopensim-SC_OLD-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.zip
opensim-SC_OLD-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.tar.gz
opensim-SC_OLD-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.tar.bz2
opensim-SC_OLD-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.tar.xz
avoid some wrong watchdog timeouts
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs
index aed1372..f68c5f8 100644
--- a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs
@@ -658,7 +658,7 @@ namespace OpenSim.Region.CoreModules.Scripting.XMLRPC
658 public void Process() 658 public void Process()
659 { 659 {
660 _finished = false; 660 _finished = false;
661 httpThread = WorkManager.StartThread(SendRequest, "HttpRequestThread", ThreadPriority.BelowNormal, true, false); 661 httpThread = WorkManager.StartThread(SendRequest, "HttpRequestThread", ThreadPriority.BelowNormal, true, false, null, int.MaxValue);
662 } 662 }
663 663
664 /* 664 /*