Browse Source

Merge pull request #8516 from richardkchapman/dali-plugin2

HPCC-15377 Update dali plugin code to match new environment layout

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 9 years ago
parent
commit
51d1860155
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/jlib/jutil.cpp

+ 1 - 1
system/jlib/jutil.cpp

@@ -500,7 +500,7 @@ void SharedObject::unload()
 
 IPluggableFactory *loadPlugin(const IPropertyTree *pluginInfo)
 {
-    const char *pluginName = pluginInfo->queryProp("@name");
+    const char *pluginName = pluginInfo->queryProp("@pluginName");
     const char *entrypoint = pluginInfo->queryProp("@entrypoint");
     if (!pluginName || !entrypoint)
         throw makeStringException(0, "Plugin information missing plugin name or entrypoint");