diff options
author | UbitUmarov | 2017-05-26 00:53:21 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-26 00:53:21 +0100 |
commit | 5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a (patch) | |
tree | c1f678481c012c7a4a3b70598b9a21f2d3f7068d /OpenSim/Region/CoreModules/Scripting/XMLRPC | |
parent | make BlockingQueue.Dequeue timeouts more coerent (just less than watchdog tim... (diff) | |
download | opensim-SC-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.zip opensim-SC-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.tar.gz opensim-SC-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.tar.bz2 opensim-SC-5287489a3c0c8c0d5b6fe739d6c0a334a12eee6a.tar.xz |
avoid some wrong watchdog timeouts
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/XMLRPC')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | 2 |
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 | /* |