diff options
author | UbitUmarov | 2017-05-24 02:19:25 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-24 02:19:25 +0100 |
commit | 8989e8ef3ac68fbf93090b4eeb999081d215d945 (patch) | |
tree | b4ce3ccb16aa61621aaa49e6d6842e9da9a07f7e /OpenSim/Region/Application | |
parent | dont log timeouts on stopped threads (diff) | |
download | opensim-SC_OLD-8989e8ef3ac68fbf93090b4eeb999081d215d945.zip opensim-SC_OLD-8989e8ef3ac68fbf93090b4eeb999081d215d945.tar.gz opensim-SC_OLD-8989e8ef3ac68fbf93090b4eeb999081d215d945.tar.bz2 opensim-SC_OLD-8989e8ef3ac68fbf93090b4eeb999081d215d945.tar.xz |
give up on the code to stop AsyncCommandManager. It fails with many scripts running, and its only done deep on exit code. It is a backgroud thread should not block exit and never did
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 4bd2c28..447afb4 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -79,7 +79,7 @@ namespace OpenSim | |||
79 | else | 79 | else |
80 | { | 80 | { |
81 | ServicePointManager.DefaultConnectionLimit = 12; | 81 | ServicePointManager.DefaultConnectionLimit = 12; |
82 | try { ServicePointManager.DnsRefreshTimeout = 120000; } // just is case crazy some mono decides to have it infinity | 82 | try { ServicePointManager.DnsRefreshTimeout = 120000; } // just is case some crazy mono decides to have it infinity |
83 | catch { } | 83 | catch { } |
84 | } | 84 | } |
85 | 85 | ||