Renamed variable

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/vre-management/smart-executor@117719 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2015-08-27 10:36:59 +00:00
parent 7cc4c3c6fe
commit 7e1443be3d
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public class SmartExecutorImpl implements SmartExecutor {
SmartExecutorScheduler smartExecutorScheduler = SmartExecutorInitalizator.getSmartExecutorScheduler();
UUID uuid = smartExecutorScheduler.schedule(parameter);
logger.debug(String.format("The Plugin named %s with UUID %s has been launched with the provided inputs", parameter.getName(), uuid));
logger.debug(String.format("The Plugin named %s with UUID %s has been launched with the provided inputs", parameter.getPluginName(), uuid));
return uuid.toString();
}

View File

@ -81,7 +81,7 @@ public class SmartExecutorJob implements InterruptableJob {
uuid = (UUID) jobDataMap.get(UUID);
launchParameter = (LaunchParameter) jobDataMap.get(LAUNCH_PARAMETER);
pluginName = launchParameter.getName();
pluginName = launchParameter.getPluginName();
try {
plugin = PluginManager.instantiatePlugin(pluginName);