aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Dague2009-02-25 14:19:15 +0000
committerSean Dague2009-02-25 14:19:15 +0000
commit6c8debd3e0e4e51a0d42757dedf542d54e8bb851 (patch)
tree7d9f61988e58840479f4ff5433ecbbba04e3fb2e
parent* Ignored gens (diff)
downloadopensim-SC_OLD-6c8debd3e0e4e51a0d42757dedf542d54e8bb851.zip
opensim-SC_OLD-6c8debd3e0e4e51a0d42757dedf542d54e8bb851.tar.gz
opensim-SC_OLD-6c8debd3e0e4e51a0d42757dedf542d54e8bb851.tar.bz2
opensim-SC_OLD-6c8debd3e0e4e51a0d42757dedf542d54e8bb851.tar.xz
From: Alan Webb <awebb@linux.vnet.ibm.com>
The mono addin filter for the AssetCache is incorrect, this fixes it. The problem only shows up when you have more than one AssetCache to choose from.
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 2f3f198..cbc441c 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -495,7 +495,7 @@ namespace OpenSim
495 495
496 PluginInitialiserBase init = new AssetCachePluginInitialiser(m_configSettings, assetServer); 496 PluginInitialiserBase init = new AssetCachePluginInitialiser(m_configSettings, assetServer);
497 PluginLoader<IAssetCache> loader = new PluginLoader<IAssetCache>(init); 497 PluginLoader<IAssetCache> loader = new PluginLoader<IAssetCache>(init);
498 loader.AddFilter(PLUGIN_ASSET_SERVER_CLIENT, new PluginProviderFilter(m_configSettings.AssetCache)); 498 loader.AddFilter(PLUGIN_ASSET_CACHE, new PluginProviderFilter(m_configSettings.AssetCache));
499 499
500 loader.Load(PLUGIN_ASSET_CACHE); 500 loader.Load(PLUGIN_ASSET_CACHE);
501 if (loader.Plugins.Count > 0) 501 if (loader.Plugins.Count > 0)