aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2009-09-05 17:16:43 -0700
committerDiva Canto2009-09-05 17:16:43 -0700
commitbabe392709a7f7a65540485a641916d6e0194b5d (patch)
tree7f57f6078c5082aaffa1b1f5f9035a264501c0e6
parentThis should get rid of the infinite loop upon looking up users/agents by UUID... (diff)
downloadopensim-SC_OLD-babe392709a7f7a65540485a641916d6e0194b5d.zip
opensim-SC_OLD-babe392709a7f7a65540485a641916d6e0194b5d.tar.gz
opensim-SC_OLD-babe392709a7f7a65540485a641916d6e0194b5d.tar.bz2
opensim-SC_OLD-babe392709a7f7a65540485a641916d6e0194b5d.tar.xz
uh-hum. It might help if I remembered to save the file.
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs b/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs
index 92e6ae3..ec8512a 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs
@@ -112,7 +112,7 @@ namespace OpenSim.Region.Communications.OGS1
112 parameters.Add(param); 112 parameters.Add(param);
113 XmlRpcRequest req = new XmlRpcRequest("get_agent_by_uuid", parameters); 113 XmlRpcRequest req = new XmlRpcRequest("get_agent_by_uuid", parameters);
114 114
115 XmlRpcResponse resp = req.Send(GetUserServerURL(userId), 6000); 115 XmlRpcResponse resp = req.Send(m_commsManager.NetworkServersInfo.UserURL, 6000);
116 Hashtable respData = (Hashtable)resp.Value; 116 Hashtable respData = (Hashtable)resp.Value;
117 if (respData.Contains("error_type")) 117 if (respData.Contains("error_type"))
118 { 118 {