Repository: airavata Updated Branches: refs/heads/master 9aeed4d32 -> 6e49e375f
Missed one place. AIRAVATA-1472 Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/6e49e375 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/6e49e375 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/6e49e375 Branch: refs/heads/master Commit: 6e49e375f2cc0da3c7d679ee43f73c72f48e57c8 Parents: 9aeed4d Author: raminder <[email protected]> Authored: Thu Oct 16 10:37:34 2014 -0400 Committer: raminder <[email protected]> Committed: Thu Oct 16 10:37:34 2014 -0400 ---------------------------------------------------------------------- .../airavata/orchestrator/cpi/impl/AbstractOrchestrator.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/6e49e375/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/AbstractOrchestrator.java ---------------------------------------------------------------------- diff --git a/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/AbstractOrchestrator.java b/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/AbstractOrchestrator.java index 6ee8290..1fc1ad2 100644 --- a/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/AbstractOrchestrator.java +++ b/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/AbstractOrchestrator.java @@ -116,9 +116,8 @@ public abstract class AbstractOrchestrator implements Orchestrator { //get the registry URL and the credentials from the property file protected void setGatewayProperties() { try { - setAiravataUserName(ServerSettings.getSetting("system.user")); - setGatewayName(ServerSettings.getSetting("system.gateway")); - setRegistryURL(ServerSettings.getSetting("airavata.server.url")); + setAiravataUserName(ServerSettings.getDefaultUser()); + setGatewayName(ServerSettings.getDefaultUserGateway()); } catch (ApplicationSettingsException e) { e.printStackTrace(); }
