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/11/06 03:55:30 UTC

svn commit: r1031941 - /activemq/activemq-apollo/trunk/apollo-web/src/main/scala/org/apache/activemq/apollo/web/ServletContextListener.scala

Author: chirino
Date: Sat Nov  6 02:55:29 2010
New Revision: 1031941

URL: http://svn.apache.org/viewvc?rev=1031941&view=rev
Log:
use a apollo.xml for the config file name.

Modified:
    activemq/activemq-apollo/trunk/apollo-web/src/main/scala/org/apache/activemq/apollo/web/ServletContextListener.scala

Modified: activemq/activemq-apollo/trunk/apollo-web/src/main/scala/org/apache/activemq/apollo/web/ServletContextListener.scala
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-web/src/main/scala/org/apache/activemq/apollo/web/ServletContextListener.scala?rev=1031941&r1=1031940&r2=1031941&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-web/src/main/scala/org/apache/activemq/apollo/web/ServletContextListener.scala (original)
+++ activemq/activemq-apollo/trunk/apollo-web/src/main/scala/org/apache/activemq/apollo/web/ServletContextListener.scala Sat Nov  6 02:55:29 2010
@@ -80,7 +80,7 @@ class ApolloListener extends ServletCont
 
   def createConfigStore():ConfigStore = {
     val store = new FileConfigStore
-    store.file = new File("activemq.xml")
+    store.file = new File("apollo.xml")
     LoggingTracker("config store startup") { tracker=>
       store.start(tracker.task())
     }