You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sh...@apache.org on 2015/03/26 18:08:30 UTC

[31/50] [abbrv] airavata git commit: fixed typo

fixed typo


Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/48192d98
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/48192d98
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/48192d98

Branch: refs/heads/master
Commit: 48192d98f48f381d039decb3712512336610e533
Parents: 9700459
Author: shamrath <sh...@gmail.com>
Authored: Fri Mar 13 14:42:06 2015 -0400
Committer: shamrath <sh...@gmail.com>
Committed: Fri Mar 13 14:42:06 2015 -0400

----------------------------------------------------------------------
 .../simple/workflow/engine/SimpleWorkflowInterpreter.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/48192d98/modules/simple-workflow/src/main/java/org/apache/airavata/simple/workflow/engine/SimpleWorkflowInterpreter.java
----------------------------------------------------------------------
diff --git a/modules/simple-workflow/src/main/java/org/apache/airavata/simple/workflow/engine/SimpleWorkflowInterpreter.java b/modules/simple-workflow/src/main/java/org/apache/airavata/simple/workflow/engine/SimpleWorkflowInterpreter.java
index 5504f84..191988c 100644
--- a/modules/simple-workflow/src/main/java/org/apache/airavata/simple/workflow/engine/SimpleWorkflowInterpreter.java
+++ b/modules/simple-workflow/src/main/java/org/apache/airavata/simple/workflow/engine/SimpleWorkflowInterpreter.java
@@ -123,7 +123,7 @@ class SimpleWorkflowInterpreter{
                 sb.append("=");
                 sb.append(workflowInputNode.getInputObject().getValue());
             }
-            throw new AiravataException("No workflow application node in ready state to run with experiment inputs" + sb.toString());
+            throw new AiravataException("No workflow application node is in ready state to run with experiment inputs" + sb.toString());
         }
         processReadyList();
     }
@@ -136,7 +136,7 @@ class SimpleWorkflowInterpreter{
      */
     void processReadyList() throws RegistryException, AiravataException {
         if (readyList.isEmpty() && processingQueue.isEmpty() && !waitingList.isEmpty()) {
-            throw new AiravataException("No workflow application node in ready state to run");
+            throw new AiravataException("No workflow application node is in ready state to run");
         }
         for (WorkflowNode readyNode : readyList.values()) {
             if (readyNode instanceof WorkflowOutputNode) {