From 5e4fc6e91e5edffd1dc23af4f583d6294f394a3d Mon Sep 17 00:00:00 2001 From: diva Date: Fri, 15 May 2009 05:00:25 +0000 Subject: Heart surgery on asset service code bits. Affects OpenSim.ini configuration -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now --- OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs') diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs index 5de44b6..1a330b1 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs @@ -476,7 +476,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory { Rest.Log.DebugFormat("{0} Rest asset: {1} {2} {3}", MsgId, asset.ID, asset.Type, asset.Name); - Rest.AssetServices.AddAsset(asset); + Rest.AssetServices.Store(asset); created = true; rdata.appendStatus(String.Format("
Created asset {0}, UUID {1}
", @@ -682,7 +682,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory // The asset was validated during the collection process - Rest.AssetServices.AddAsset(asset); + Rest.AssetServices.Store(asset); created = true; rdata.appendStatus(String.Format("
Created asset {0}, UUID {1}
", asset.Name, asset.ID)); -- cgit v1.1