From 2f8acdbe5073c21ab49ac0865eecd10db401eb32 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Wed, 30 Jul 2008 08:17:19 +0000 Subject: * Applying Mantis #1852 - Plugin Provider refactoring. Courtesy of Ryan/Sempuki. --- OpenSim/Grid/GridServer/GridManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Grid/GridServer/GridManager.cs') diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index ec3ca19..98e670f 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs @@ -71,9 +71,9 @@ namespace OpenSim.Grid.GridServer logloader.AddExtensionPoint ("/OpenSim/LogData"); // loader will try to load all providers (MySQL, MSSQL, etc) - // unless it is constrainted to the correct "id" - gridloader.AddFilter ("/OpenSim/GridData", new PluginIdFilter (provider)); - logloader.AddFilter ("/OpenSim/LogData", new PluginIdFilter (provider)); + // unless it is constrainted to the correct "Provider" entry in the addin.xml + gridloader.AddFilter ("/OpenSim/GridData", new PluginProviderFilter (provider)); + logloader.AddFilter ("/OpenSim/LogData", new PluginProviderFilter (provider)); gridloader.Load(); logloader.Load(); -- cgit v1.1