diff options
author | Robert Adams | 2014-09-05 21:20:02 -0700 |
---|---|---|
committer | Robert Adams | 2014-09-05 21:20:02 -0700 |
commit | e5b269e9a09441814a2849e4411ab5b0e11c46df (patch) | |
tree | 0d25eaf07841eaefc3f9b1de5b434d3cbbac6f73 /OpenSim/Addons/Groups | |
parent | Merge branch 'master' into bullet-2.82 (diff) | |
parent | For monitoring purposes, start non-timeout tasks (which do not currently use ... (diff) | |
download | opensim-SC_OLD-e5b269e9a09441814a2849e4411ab5b0e11c46df.zip opensim-SC_OLD-e5b269e9a09441814a2849e4411ab5b0e11c46df.tar.gz opensim-SC_OLD-e5b269e9a09441814a2849e4411ab5b0e11c46df.tar.bz2 opensim-SC_OLD-e5b269e9a09441814a2849e4411ab5b0e11c46df.tar.xz |
Merge branch 'master' into bullet-2.82
Diffstat (limited to 'OpenSim/Addons/Groups')
-rw-r--r-- | OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs index a750d8d..9fbc1b3 100644 --- a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs +++ b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | |||
@@ -32,6 +32,7 @@ using System.Reflection; | |||
32 | using System.Text; | 32 | using System.Text; |
33 | 33 | ||
34 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Monitoring; | ||
35 | using OpenSim.Framework.Servers; | 36 | using OpenSim.Framework.Servers; |
36 | using OpenSim.Region.Framework.Scenes; | 37 | using OpenSim.Region.Framework.Scenes; |
37 | using OpenSim.Region.Framework.Interfaces; | 38 | using OpenSim.Region.Framework.Interfaces; |
@@ -560,7 +561,7 @@ namespace OpenSim.Groups | |||
560 | 561 | ||
561 | // so we have the list of urls to send the notice to | 562 | // so we have the list of urls to send the notice to |
562 | // this may take a long time... | 563 | // this may take a long time... |
563 | Util.RunThreadNoTimeout(delegate | 564 | Watchdog.RunInThread(delegate |
564 | { | 565 | { |
565 | foreach (string u in urls) | 566 | foreach (string u in urls) |
566 | { | 567 | { |
@@ -571,7 +572,7 @@ namespace OpenSim.Groups | |||
571 | hasAttachment, attType, attName, attItemID, AgentUUIForOutside(attOwnerID)); | 572 | hasAttachment, attType, attName, attItemID, AgentUUIForOutside(attOwnerID)); |
572 | } | 573 | } |
573 | } | 574 | } |
574 | }, "AddGroupNotice", null); | 575 | }, string.Format("AddGroupNotice (agent {0}, group {1})", RequestingAgentID, groupID) , null); |
575 | 576 | ||
576 | return true; | 577 | return true; |
577 | } | 578 | } |