This is an automated email from the ASF dual-hosted git repository.

isjarana pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/develop by this push:
     new 85b2c26276 Adding OrchService
     new bf07c02007 Merge pull request #397 from isururanawaka/metaschedular
85b2c26276 is described below

commit 85b2c2627638c28d5bde310a9d971bab36adc317
Author: Isuru Ranawaka <[email protected]>
AuthorDate: Thu Mar 9 14:57:26 2023 -0500

    Adding OrchService
---
 .../airavata/orchestrator/server/OrchestratorServerHandler.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/modules/orchestrator/orchestrator-service/src/main/java/org/apache/airavata/orchestrator/server/OrchestratorServerHandler.java
 
b/modules/orchestrator/orchestrator-service/src/main/java/org/apache/airavata/orchestrator/server/OrchestratorServerHandler.java
index 4d2f0fda7e..9e3955871a 100644
--- 
a/modules/orchestrator/orchestrator-service/src/main/java/org/apache/airavata/orchestrator/server/OrchestratorServerHandler.java
+++ 
b/modules/orchestrator/orchestrator-service/src/main/java/org/apache/airavata/orchestrator/server/OrchestratorServerHandler.java
@@ -263,14 +263,14 @@ public class OrchestratorServerHandler implements 
OrchestratorService.Iface {
                             throw new Exception("Validating process fails for 
given experiment Id : " + experimentId);
                         }
                     }
-                    runExperimentLauncher(experimentId, token, gatewayId);
+                    runExperimentLauncher(experimentId, gatewayId, token);
                 } else {
                     log.debug(experimentId, "Queuing single application 
experiment {}.", experimentId);
                     ExperimentStatus status = new 
ExperimentStatus(ExperimentState.SCHEDULED);
                     status.setReason("Compute resources are not ready");
                     
status.setTimeOfStateChange(AiravataUtils.getCurrentTimestamp().getTime());
                     
OrchestratorUtils.updateAndPublishExperimentStatus(experimentId, status, 
publisher, gatewayId);
-                    log.info("expId: {}, Launched experiment ", experimentId);
+                    log.info("expId: {}, Scheduled experiment ", experimentId);
                 }
             } else if (executionType == ExperimentType.WORKFLOW) {
                 //its a workflow execution experiment

Reply via email to