Author: lahiru
Date: Fri May 3 19:01:38 2013
New Revision: 1478928
URL: http://svn.apache.org/r1478928
Log:
ifixing unsubscription issue.
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=1478928&r1=1478927&r2=1478928&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
Fri May 3 19:01:38 2013
@@ -135,7 +135,9 @@ public class WorkflowInterpretorEventLis
}
this.wseClient.unSubscribe(this.subscriptionID);
} catch (MsgBrokerClientException e) {
- throw new MonitorException("Failed to unsubscribe.", e);
+ // We do not throw exception because we unsubscribe for all the failures, there
could be multiple failure messages
+ //for a given case.
+ logger.info("Given subscription is already unsubscribed.");
}
}
|