From 7fa00f9ecdf2ec5d42ebaf411a619e54404e4800 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 7 Jul 2008 19:32:21 +0000 Subject: * remove redundant sync locking in AssetServerBase since this is already being done by the lower database layers --- OpenSim/Framework/Communications/Cache/AssetCache.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework/Communications/Cache/AssetCache.cs') diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 7099760..d0bcc98 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs @@ -360,7 +360,7 @@ namespace OpenSim.Framework.Communications.Cache if (!asset.Temporary) { - m_assetServer.StoreAndCommitAsset(asset); + m_assetServer.StoreAsset(asset); } } } @@ -376,7 +376,7 @@ namespace OpenSim.Framework.Communications.Cache if (!asset.Temporary) { - m_assetServer.StoreAndCommitAsset(asset); + m_assetServer.StoreAsset(asset); } } } -- cgit v1.1