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 <[email protected]> Authored: Fri Mar 13 14:42:06 2015 -0400 Committer: shamrath <[email protected]> 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) {
