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:21:44 UTC

svn commit: r961214 - /activemq/sandbox/activemq-apollo-actor/activemq-web/src/main/scala/org/apache/activemq/apollo/web/resources/RuntimeResource.scala

Author: chirino
Date: Wed Jul  7 04:21:44 2010
New Revision: 961214

URL: http://svn.apache.org/viewvc?rev=961214&view=rev
Log:
fix since time on broker status

Modified:
    activemq/sandbox/activemq-apollo-actor/activemq-web/src/main/scala/org/apache/activemq/apollo/web/resources/RuntimeResource.scala

Modified: activemq/sandbox/activemq-apollo-actor/activemq-web/src/main/scala/org/apache/activemq/apollo/web/resources/RuntimeResource.scala
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-apollo-actor/activemq-web/src/main/scala/org/apache/activemq/apollo/web/resources/RuntimeResource.scala?rev=961214&r1=961213&r2=961214&view=diff
==============================================================================
--- activemq/sandbox/activemq-apollo-actor/activemq-web/src/main/scala/org/apache/activemq/apollo/web/resources/RuntimeResource.scala (original)
+++ activemq/sandbox/activemq-apollo-actor/activemq-web/src/main/scala/org/apache/activemq/apollo/web/resources/RuntimeResource.scala Wed Jul  7 04:21:44 2010
@@ -73,7 +73,7 @@ case class RuntimeResource(parent:Broker
       result.id = broker.id
       result.current_time = System.currentTimeMillis
       result.state = broker.serviceState.toString
-      result.state_since - broker.serviceState.since
+      result.state_since = broker.serviceState.since
       result.config = broker.config
 
       broker.virtualHosts.values.foreach{ host=>