You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2007/05/05 12:05:23 UTC

svn commit: r535490 - /incubator/tuscany/java/sca/modules/host-embedded/src/main/java/org/apache/tuscany/host/embedded/impl/DefaultSCADomain.java

Author: antelder
Date: Sat May  5 03:05:22 2007
New Revision: 535490

URL: http://svn.apache.org/viewvc?view=rev&rev=535490
Log:
Fix so composites don't get started twice

Modified:
    incubator/tuscany/java/sca/modules/host-embedded/src/main/java/org/apache/tuscany/host/embedded/impl/DefaultSCADomain.java

Modified: incubator/tuscany/java/sca/modules/host-embedded/src/main/java/org/apache/tuscany/host/embedded/impl/DefaultSCADomain.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/host-embedded/src/main/java/org/apache/tuscany/host/embedded/impl/DefaultSCADomain.java?view=diff&rev=535490&r1=535489&r2=535490
==============================================================================
--- incubator/tuscany/java/sca/modules/host-embedded/src/main/java/org/apache/tuscany/host/embedded/impl/DefaultSCADomain.java (original)
+++ incubator/tuscany/java/sca/modules/host-embedded/src/main/java/org/apache/tuscany/host/embedded/impl/DefaultSCADomain.java Sat May  5 03:05:22 2007
@@ -132,10 +132,7 @@
         CompositeActivator compositeActivator = runtime.getCompositeActivator();
         try {
             ((DefaultCompositeActivator)compositeActivator).activate(domainComposite);
-            compositeActivator.start(domainComposite);
         } catch (IncompatibleInterfaceContractException e) {
-            throw new ServiceRuntimeException(e);
-        } catch (ActivationException e) {
             throw new ServiceRuntimeException(e);
         }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org