You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/06/07 15:46:59 UTC

[1/2] activemq-artemis git commit: This closes #568

Repository: activemq-artemis
Updated Branches:
  refs/heads/master 4ee53d054 -> fe7b73c7d


This closes #568


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

Branch: refs/heads/master
Commit: fe7b73c7d140583412347947b4fb568020682357
Parents: 4ee53d0 d302459
Author: Clebert Suconic <cl...@apache.org>
Authored: Tue Jun 7 11:46:49 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Tue Jun 7 11:46:49 2016 -0400

----------------------------------------------------------------------
 docs/user-manual/en/persistence.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[2/2] activemq-artemis git commit: Note to escape & in XML JDBC Connection

Posted by cl...@apache.org.
Note to escape & in XML JDBC Connection


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

Branch: refs/heads/master
Commit: d3024598e3a0b3c63ba306fadbdfeb0836898179
Parents: 4ee53d0
Author: Martyn Taylor <mt...@redhat.com>
Authored: Tue Jun 7 16:25:09 2016 +0100
Committer: Clebert Suconic <cl...@apache.org>
Committed: Tue Jun 7 11:46:49 2016 -0400

----------------------------------------------------------------------
 docs/user-manual/en/persistence.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d3024598/docs/user-manual/en/persistence.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/persistence.md b/docs/user-manual/en/persistence.md
index 999d875..7eaf4e4 100644
--- a/docs/user-manual/en/persistence.md
+++ b/docs/user-manual/en/persistence.md
@@ -386,7 +386,7 @@ To configure Apache ActiveMQ Artemis to use a database for persisting messages a
 
 1. Add the appropriate JDBC driver libraries to the Artemis runtime.  You can do this by dropping the relevant jars in the lib folder of the ActiveMQ Artemis distribution.
 
-2. create a store element in your broker.xml config file under the <core> element.  For example:
+2. Create a store element in your broker.xml config file under the <core> element.  For example:
 
 ```xml
       <store>
@@ -402,7 +402,7 @@ To configure Apache ActiveMQ Artemis to use a database for persisting messages a
 
 -   `jdbc-connection-url`
 
-    The full JDBC connection URL for your database server.  The connection url should include all configuration parameters and database name.
+    The full JDBC connection URL for your database server.  The connection url should include all configuration parameters and database name.  Note: When configuring the server using the XML configuration files please ensure to escape any illegal chars; "&" for example, is typical in JDBC connection url and should be escaped to "&amp;".
 
 -   `bindings-table-name`