You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ha...@apache.org on 2017/12/18 22:55:14 UTC

activemq git commit: [no jira] Fix invalid xml for broker config

Repository: activemq
Updated Branches:
  refs/heads/activemq-5.15.x 94aea677a -> 944b8273c


[no jira] Fix invalid xml for broker config


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/944b8273
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/944b8273
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/944b8273

Branch: refs/heads/activemq-5.15.x
Commit: 944b8273c00618e72a8330d0f013a92ae5048617
Parents: 94aea67
Author: Hadrian Zbarcea <ha...@apache.org>
Authored: Mon Dec 18 17:54:44 2017 -0500
Committer: Hadrian Zbarcea <ha...@apache.org>
Committed: Mon Dec 18 17:54:44 2017 -0500

----------------------------------------------------------------------
 activemq-web-console/src/main/webapp/WEB-INF/activemq.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/944b8273/activemq-web-console/src/main/webapp/WEB-INF/activemq.xml
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/webapp/WEB-INF/activemq.xml b/activemq-web-console/src/main/webapp/WEB-INF/activemq.xml
index 279f993..4317fef 100644
--- a/activemq-web-console/src/main/webapp/WEB-INF/activemq.xml
+++ b/activemq-web-console/src/main/webapp/WEB-INF/activemq.xml
@@ -18,7 +18,7 @@
 <beans
   xmlns="http://www.springframework.org/schema/beans"
   xmlns:amq="http://activemq.apache.org/schema/core"
-  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance""
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
@@ -28,12 +28,12 @@
   <broker brokerName="web-console" useJmx="true" xmlns="http://activemq.apache.org/schema/core">
 
     <persistenceAdapter>
-      <kahaDB directory="target/kahadb"/>
+      <kahaDB directory="target/kahadb" />
     </persistenceAdapter>
 
     <transportConnectors>
-      <transportConnector name="openwire" uri="tcp://localhost:61616"/>
-      <transportConnector name="stomp" uri="stomp://localhost:61613"/>
+      <transportConnector name="openwire" uri="tcp://localhost:61616" />
+      <transportConnector name="stomp" uri="stomp://localhost:61613" />
     </transportConnectors>
 
   </broker>