* Removed verbose debug message
* Restored HG inventory access which had been lost upon adding a 3rd argument to inventory and asset server handlers * Fixed a stupid bug in the InventoryConnector which was making move items do things twiceprioritization
parent
3db4d38645
commit
77b4abaa25
|
@ -98,7 +98,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Asset
|
|||
|
||||
m_log.Info("[RegionAssetService]: Starting...");
|
||||
|
||||
Object[] args = new Object[] { m_Config, MainServer.Instance };
|
||||
Object[] args = new Object[] { m_Config, MainServer.Instance, string.Empty };
|
||||
|
||||
ServerUtils.LoadPlugin<IServiceConnector>("OpenSim.Server.Handlers.dll:AssetServiceConnector", args);
|
||||
}
|
||||
|
|
|
@ -98,7 +98,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Inventory
|
|||
|
||||
m_log.Info("[RegionInventoryService]: Starting...");
|
||||
|
||||
Object[] args = new Object[] { m_Config, MainServer.Instance };
|
||||
Object[] args = new Object[] { m_Config, MainServer.Instance, String.Empty };
|
||||
|
||||
ServerUtils.LoadPlugin<IServiceConnector>("OpenSim.Server.Handlers.dll:InventoryServiceInConnector", args);
|
||||
}
|
||||
|
|
|
@ -260,7 +260,7 @@ namespace OpenSim.Server.Base
|
|||
|
||||
public static Dictionary<string, object> ParseXmlResponse(string data)
|
||||
{
|
||||
m_log.DebugFormat("[XXX]: received xml string: {0}", data);
|
||||
//m_log.DebugFormat("[XXX]: received xml string: {0}", data);
|
||||
|
||||
Dictionary<string, object> ret = new Dictionary<string, object>();
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@ namespace OpenSim.Server.Handlers.Inventory
|
|||
m_doLookup = serverConfig.GetBoolean("SessionAuthentication", false);
|
||||
|
||||
AddHttpHandlers(server);
|
||||
m_log.Debug("[INVENTORY HANDLER]: handlers initialized");
|
||||
}
|
||||
|
||||
protected virtual void AddHttpHandlers(IHttpServer m_httpServer)
|
||||
|
|
|
@ -416,13 +416,6 @@ namespace OpenSim.Services.Connectors
|
|||
e.Source, e.Message);
|
||||
}
|
||||
|
||||
foreach (InventoryItemBase item in items)
|
||||
{
|
||||
InventoryItemBase itm = this.QueryItem(userID, item, sessionID);
|
||||
itm.Name = item.Name;
|
||||
itm.Folder = item.Folder;
|
||||
this.UpdateItem(userID, itm, sessionID);
|
||||
}
|
||||
}
|
||||
|
||||
private void MoveItemsCompleted(IAsyncResult iar)
|
||||
|
|
Loading…
Reference in New Issue