You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2010/07/07 06:14:29 UTC

svn commit: r961181 - /activemq/sandbox/activemq-apollo-actor/activemq-broker/src/main/scala/org/apache/activemq/apollo/broker/VirtualHost.scala

Author: chirino
Date: Wed Jul  7 04:14:29 2010
New Revision: 961181

URL: http://svn.apache.org/viewvc?rev=961181&view=rev
Log:
use the enriched service interface.

Modified:
    activemq/sandbox/activemq-apollo-actor/activemq-broker/src/main/scala/org/apache/activemq/apollo/broker/VirtualHost.scala

Modified: activemq/sandbox/activemq-apollo-actor/activemq-broker/src/main/scala/org/apache/activemq/apollo/broker/VirtualHost.scala
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-apollo-actor/activemq-broker/src/main/scala/org/apache/activemq/apollo/broker/VirtualHost.scala?rev=961181&r1=961180&r2=961181&view=diff
==============================================================================
--- activemq/sandbox/activemq-apollo-actor/activemq-broker/src/main/scala/org/apache/activemq/apollo/broker/VirtualHost.scala (original)
+++ activemq/sandbox/activemq-apollo-actor/activemq-broker/src/main/scala/org/apache/activemq/apollo/broker/VirtualHost.scala Wed Jul  7 04:14:29 2010
@@ -129,7 +129,7 @@ class VirtualHost(val broker: Broker) ex
     if( store!=null ) {
       store.configure(config.store, this)
       val task = tracker.task("store startup")
-      store.start(^{
+      store.start {
         if( config.purgeOnStartup ) {
           task.name = "store purge"
           store.purge {
@@ -163,7 +163,7 @@ class VirtualHost(val broker: Broker) ex
             task.run
           }
         }
-      });
+      }
     }