aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-19 00:33:02 -0700
committerDiva Canto2009-08-19 00:33:02 -0700
commit4382f28efc6ffe70e3c6f6e8cd7e7c729d1f12af (patch)
tree135b6061eb7589d31d6e1cb6d7f5b67dfd09a3b1 /OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs
parentMerge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-4382f28efc6ffe70e3c6f6e8cd7e7c729d1f12af.zip
opensim-SC_OLD-4382f28efc6ffe70e3c6f6e8cd7e7c729d1f12af.tar.gz
opensim-SC_OLD-4382f28efc6ffe70e3c6f6e8cd7e7c729d1f12af.tar.bz2
opensim-SC_OLD-4382f28efc6ffe70e3c6f6e8cd7e7c729d1f12af.tar.xz
Async purge so that the client thread doesn't wait.
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs
index 012f0e3..081d0f7 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs
@@ -323,14 +323,14 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
323 323
324 private UUID GetSessionID(UUID userID) 324 private UUID GetSessionID(UUID userID)
325 { 325 {
326 if (m_Scene == null) 326 //if (m_Scene == null)
327 { 327 //{
328 m_log.Debug("[INVENTORY CONNECTOR]: OOPS! scene is null"); 328 // m_log.Debug("[INVENTORY CONNECTOR]: OOPS! scene is null");
329 } 329 //}
330 330
331 if (m_UserProfileService == null) 331 if (m_UserProfileService == null)
332 { 332 {
333 m_log.Debug("[INVENTORY CONNECTOR]: OOPS! UserProfileCacheService is null"); 333 //m_log.Debug("[INVENTORY CONNECTOR]: OOPS! UserProfileCacheService is null");
334 return UUID.Zero; 334 return UUID.Zero;
335 } 335 }
336 336