From commits-return-4182-apmail-airavata-commits-archive=airavata.apache.org@airavata.apache.org Sat May 4 07:15:05 2013 Return-Path: X-Original-To: apmail-airavata-commits-archive@www.apache.org Delivered-To: apmail-airavata-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6902F10594 for ; Sat, 4 May 2013 07:15:05 +0000 (UTC) Received: (qmail 66624 invoked by uid 500); 4 May 2013 07:15:04 -0000 Delivered-To: apmail-airavata-commits-archive@airavata.apache.org Received: (qmail 66513 invoked by uid 500); 4 May 2013 07:15:01 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 66472 invoked by uid 99); 4 May 2013 07:14:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 May 2013 07:14:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 May 2013 07:14:59 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id EC23E238899C; Sat, 4 May 2013 07:14:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1479051 - /airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java Date: Sat, 04 May 2013 07:14:38 -0000 To: commits@airavata.apache.org From: lahiru@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130504071438.EC23E238899C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: lahiru Date: Sat May 4 07:14:38 2013 New Revision: 1479051 URL: http://svn.apache.org/r1479051 Log: removing threading with each node due to unstability Modified: airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java Modified: airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java URL: http://svn.apache.org/viewvc/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java?rev=1479051&r1=1479050&r2=1479051&view=diff ============================================================================== --- airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java (original) +++ airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/interpretor/WorkflowInterpreter.java Sat May 4 07:14:38 2013 @@ -198,18 +198,18 @@ public class WorkflowInterpreter { } // Since this is an independent node execution we can run these nodes in separate threads. - Thread th = new Thread() { - - public synchronized void run() { - try { +// Thread th = new Thread() { +// +// public synchronized void run() { +// try { executeDynamically(node); - } catch (WorkflowException e) { - log.error("Error execution workflow Node : " + node.getID()); - return; - } - } - }; - th.start(); +// } catch (WorkflowException e) { +// log.error("Error execution workflow Node : " + node.getID()); +// return; +// } +// } +// }; +// th.start(); if (this.getWorkflow().getExecutionState() == WorkflowExecutionState.STEP) { this.getWorkflow().setExecutionState(WorkflowExecutionState.PAUSED); break;