Author: lahiru
Date: Wed May 15 18:38:26 2013
New Revision: 1482994

URL: http://svn.apache.org/r1482994
Log:
fixing error during error saving to regsitry.

Modified:
    
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorEventListener.java

Modified: 
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorEventListener.java
URL: 
http://svn.apache.org/viewvc/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorEventListener.java?rev=1482994&r1=1482993&r2=1482994&view=diff
==============================================================================
--- 
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorEventListener.java
 (original)
+++ 
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpretorEventListener.java
 Wed May 15 18:38:26 2013
@@ -215,6 +215,7 @@ public class WorkflowInterpretorEventLis
             nodeExecutionError.setNodeId(event.getNodeID());
             nodeExecutionError.setWorkflowInstanceId(event.getExperimentID());
             nodeExecutionError.setErrorMessage(event.getMessage());
+            nodeExecutionError.setErrorDescription(event.getMessage());
             
this.workflowInterpreterConfiguration.getAiravataAPI().getExecutionManager().addNodeExecutionError(nodeExecutionError);
             if (node == null) {
                if (nodeID!=null && !nodeID.equals("")) {


Reply via email to