activemq git commit: AMQ-5266 - fix leak in transaction context - completions were not cleared on close/commit

2015-07-17 Thread gtully
Repository: activemq
Updated Branches:
  refs/heads/master b9b27b968 - 7c116631b


AMQ-5266 - fix leak in transaction context - completions were not cleared on 
close/commit


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

Branch: refs/heads/master
Commit: 7c116631b504e31fb0bd9f805b1b77090d16f4ff
Parents: b9b27b9
Author: gtully gary.tu...@gmail.com
Authored: Fri Jul 17 12:30:52 2015 +0100
Committer: gtully gary.tu...@gmail.com
Committed: Fri Jul 17 12:31:29 2015 +0100

--
 .../activemq/store/jdbc/TransactionContext.java |  1 +
 .../store/jdbc/TransactionContextTest.java  | 87 
 2 files changed, 88 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/7c116631/activemq-jdbc-store/src/main/java/org/apache/activemq/store/jdbc/TransactionContext.java
--
diff --git 
a/activemq-jdbc-store/src/main/java/org/apache/activemq/store/jdbc/TransactionContext.java
 
b/activemq-jdbc-store/src/main/java/org/apache/activemq/store/jdbc/TransactionContext.java
index 25b78ab..c83b969 100755
--- 
a/activemq-jdbc-store/src/main/java/org/apache/activemq/store/jdbc/TransactionContext.java
+++ 
b/activemq-jdbc-store/src/main/java/org/apache/activemq/store/jdbc/TransactionContext.java
@@ -162,6 +162,7 @@ public class TransactionContext {
 for (Runnable completion: completions) {
 completion.run();
 }
+completions.clear();
 }
 }
 }

http://git-wip-us.apache.org/repos/asf/activemq/blob/7c116631/activemq-unit-tests/src/test/java/org/apache/activemq/store/jdbc/TransactionContextTest.java
--
diff --git 
a/activemq-unit-tests/src/test/java/org/apache/activemq/store/jdbc/TransactionContextTest.java
 
b/activemq-unit-tests/src/test/java/org/apache/activemq/store/jdbc/TransactionContextTest.java
new file mode 100644
index 000..dcc5b27
--- /dev/null
+++ 
b/activemq-unit-tests/src/test/java/org/apache/activemq/store/jdbc/TransactionContextTest.java
@@ -0,0 +1,87 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the License); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.store.jdbc;
+
+import java.util.concurrent.atomic.AtomicInteger;
+import org.junit.AfterClass;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+
+public class TransactionContextTest {
+
+org.apache.activemq.store.jdbc.TransactionContext underTest;
+static JDBCPersistenceAdapter jdbcPersistenceAdapter;
+
+@BeforeClass
+public static void init() throws Exception {
+jdbcPersistenceAdapter = new JDBCPersistenceAdapter();
+}
+
+@AfterClass
+public static void tearDown() throws Exception {
+jdbcPersistenceAdapter.stop();
+}
+
+@Before
+public void setup() throws Exception {
+underTest = new TransactionContext(jdbcPersistenceAdapter);
+}
+
+@Test
+public void testCompletionCalledOnceOnCommmit() throws Exception {
+final AtomicInteger called = new AtomicInteger();
+underTest.begin();
+underTest.onCompletion(new Runnable() {
+@Override
+public void run() {
+called.incrementAndGet();
+}
+});
+underTest.commit();
+
+assertEquals(1, called.get());
+underTest.begin();
+underTest.commit();
+
+assertEquals(1, called.get());
+
+}
+
+@Test
+public void testCompletionCalledOnceOnClose() throws Exception {
+
+underTest.getConnection();
+final AtomicInteger called = new AtomicInteger();
+underTest.onCompletion(new Runnable() {
+@Override
+public void run() {
+called.incrementAndGet();
+}

activemq git commit: give test more time, was teetering on the limit locally with some builds

2015-07-17 Thread gtully
Repository: activemq
Updated Branches:
  refs/heads/master 7c116631b - e0c2c177c


give test more time, was teetering on the limit locally with some builds


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

Branch: refs/heads/master
Commit: e0c2c177c2b9fd65bacefcc414669c114f2ad1e0
Parents: 7c11663
Author: gtully gary.tu...@gmail.com
Authored: Fri Jul 17 13:40:33 2015 +0100
Committer: gtully gary.tu...@gmail.com
Committed: Fri Jul 17 13:40:33 2015 +0100

--
 .../src/test/java/org/apache/activemq/bugs/AMQ2512Test.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/e0c2c177/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ2512Test.java
--
diff --git 
a/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ2512Test.java 
b/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ2512Test.java
index a290549..a9503e6 100644
--- 
a/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ2512Test.java
+++ 
b/activemq-unit-tests/src/test/java/org/apache/activemq/bugs/AMQ2512Test.java
@@ -66,7 +66,7 @@ public class AMQ2512Test {
 private Connection connection;
 private String connectionURI;
 
-@Test(timeout = 6)
+@Test(timeout = 5*6)
 public void testKahaDBFailure() throws Exception {
 final ConnectionFactory fac = new 
ActiveMQConnectionFactory(connectionURI);
 connection = fac.createConnection();



Jenkins build is unstable: ActiveMQ-Java7-All-UnitTests #175

2015-07-17 Thread Apache Jenkins Server
See https://builds.apache.org/job/ActiveMQ-Java7-All-UnitTests/175/changes



svn commit: r958677 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 12:23:53 2015
New Revision: 958677

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
12:23:53 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437132022437{padding:0px;}div.rbtoc1437132022437ul{list-style:disc;margin-left:0px;}div.rbtoc1437132022437li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437132022437 {padding: 0px;}
-div.rbtoc1437132022437 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437132022437 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437135615674{padding:0px;}div.rbtoc1437135615674ul{list-style:disc;margin-left:0px;}div.rbtoc1437135615674li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437135615674 {padding: 0px;}
+div.rbtoc1437135615674 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437135615674 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437132022437
+/*]]*//style/h2div class=toc-macro rbtoc1437135615674
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958687 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 14:23:52 2015
New Revision: 958687

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
14:23:52 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437139206860{padding:0px;}div.rbtoc1437139206860ul{list-style:disc;margin-left:0px;}div.rbtoc1437139206860li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437139206860 {padding: 0px;}
-div.rbtoc1437139206860 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437139206860 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437142807185{padding:0px;}div.rbtoc1437142807185ul{list-style:disc;margin-left:0px;}div.rbtoc1437142807185li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437142807185 {padding: 0px;}
+div.rbtoc1437142807185 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437142807185 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437139206860
+/*]]*//style/h2div class=toc-macro rbtoc1437142807185
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958682 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 13:23:46 2015
New Revision: 958682

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
13:23:46 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437135615674{padding:0px;}div.rbtoc1437135615674ul{list-style:disc;margin-left:0px;}div.rbtoc1437135615674li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437135615674 {padding: 0px;}
-div.rbtoc1437135615674 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437135615674 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437139206860{padding:0px;}div.rbtoc1437139206860ul{list-style:disc;margin-left:0px;}div.rbtoc1437139206860li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437139206860 {padding: 0px;}
+div.rbtoc1437139206860 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437139206860 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437135615674
+/*]]*//style/h2div class=toc-macro rbtoc1437139206860
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958703 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 15:24:01 2015
New Revision: 958703

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
15:24:01 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437142807185{padding:0px;}div.rbtoc1437142807185ul{list-style:disc;margin-left:0px;}div.rbtoc1437142807185li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437142807185 {padding: 0px;}
-div.rbtoc1437142807185 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437142807185 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437146413610{padding:0px;}div.rbtoc1437146413610ul{list-style:disc;margin-left:0px;}div.rbtoc1437146413610li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437146413610 {padding: 0px;}
+div.rbtoc1437146413610 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437146413610 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437142807185
+/*]]*//style/h2div class=toc-macro rbtoc1437146413610
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958646 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 06:24:25 2015
New Revision: 958646

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
06:24:25 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437110466592{padding:0px;}div.rbtoc1437110466592ul{list-style:disc;margin-left:0px;}div.rbtoc1437110466592li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437110466592 {padding: 0px;}
-div.rbtoc1437110466592 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437110466592 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437114041986{padding:0px;}div.rbtoc1437114041986ul{list-style:disc;margin-left:0px;}div.rbtoc1437114041986li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437114041986 {padding: 0px;}
+div.rbtoc1437114041986 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437114041986 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437110466592
+/*]]*//style/h2div class=toc-macro rbtoc1437114041986
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958651 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 07:25:22 2015
New Revision: 958651

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
07:25:22 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437114041986{padding:0px;}div.rbtoc1437114041986ul{list-style:disc;margin-left:0px;}div.rbtoc1437114041986li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437114041986 {padding: 0px;}
-div.rbtoc1437114041986 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437114041986 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437117679272{padding:0px;}div.rbtoc1437117679272ul{list-style:disc;margin-left:0px;}div.rbtoc1437117679272li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437117679272 {padding: 0px;}
+div.rbtoc1437117679272 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437117679272 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437114041986
+/*]]*//style/h2div class=toc-macro rbtoc1437117679272
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958655 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 08:24:38 2015
New Revision: 958655

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
08:24:38 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437117679272{padding:0px;}div.rbtoc1437117679272ul{list-style:disc;margin-left:0px;}div.rbtoc1437117679272li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437117679272 {padding: 0px;}
-div.rbtoc1437117679272 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437117679272 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437121247833{padding:0px;}div.rbtoc1437121247833ul{list-style:disc;margin-left:0px;}div.rbtoc1437121247833li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437121247833 {padding: 0px;}
+div.rbtoc1437121247833 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437121247833 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437117679272
+/*]]*//style/h2div class=toc-macro rbtoc1437121247833
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958717 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 16:23:48 2015
New Revision: 958717

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
16:23:48 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437146413610{padding:0px;}div.rbtoc1437146413610ul{list-style:disc;margin-left:0px;}div.rbtoc1437146413610li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437146413610 {padding: 0px;}
-div.rbtoc1437146413610 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437146413610 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437150007008{padding:0px;}div.rbtoc1437150007008ul{list-style:disc;margin-left:0px;}div.rbtoc1437150007008li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437150007008 {padding: 0px;}
+div.rbtoc1437150007008 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437150007008 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437146413610
+/*]]*//style/h2div class=toc-macro rbtoc1437150007008
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958665 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 10:23:58 2015
New Revision: 958665

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
10:23:58 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437124810835{padding:0px;}div.rbtoc1437124810835ul{list-style:disc;margin-left:0px;}div.rbtoc1437124810835li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437124810835 {padding: 0px;}
-div.rbtoc1437124810835 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437124810835 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437128414705{padding:0px;}div.rbtoc1437128414705ul{list-style:disc;margin-left:0px;}div.rbtoc1437128414705li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437128414705 {padding: 0px;}
+div.rbtoc1437128414705 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437128414705 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437124810835
+/*]]*//style/h2div class=toc-macro rbtoc1437128414705
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958671 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 11:24:04 2015
New Revision: 958671

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
11:24:04 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437128414705{padding:0px;}div.rbtoc1437128414705ul{list-style:disc;margin-left:0px;}div.rbtoc1437128414705li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437128414705 {padding: 0px;}
-div.rbtoc1437128414705 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437128414705 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437132022437{padding:0px;}div.rbtoc1437132022437ul{list-style:disc;margin-left:0px;}div.rbtoc1437132022437li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437132022437 {padding: 0px;}
+div.rbtoc1437132022437 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437132022437 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437128414705
+/*]]*//style/h2div class=toc-macro rbtoc1437132022437
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958661 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 09:23:51 2015
New Revision: 958661

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
09:23:51 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437121247833{padding:0px;}div.rbtoc1437121247833ul{list-style:disc;margin-left:0px;}div.rbtoc1437121247833li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437121247833 {padding: 0px;}
-div.rbtoc1437121247833 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437121247833 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437124810835{padding:0px;}div.rbtoc1437124810835ul{list-style:disc;margin-left:0px;}div.rbtoc1437124810835li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437124810835 {padding: 0px;}
+div.rbtoc1437124810835 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437124810835 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437121247833
+/*]]*//style/h2div class=toc-macro rbtoc1437124810835
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958722 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 17:24:04 2015
New Revision: 958722

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
17:24:04 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437150007008{padding:0px;}div.rbtoc1437150007008ul{list-style:disc;margin-left:0px;}div.rbtoc1437150007008li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437150007008 {padding: 0px;}
-div.rbtoc1437150007008 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437150007008 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437153617175{padding:0px;}div.rbtoc1437153617175ul{list-style:disc;margin-left:0px;}div.rbtoc1437153617175li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437153617175 {padding: 0px;}
+div.rbtoc1437153617175 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437153617175 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437150007008
+/*]]*//style/h2div class=toc-macro rbtoc1437153617175
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




activemq-cpp git commit: https://issues.apache.org/jira/browse/AMQCPP-576 https://issues.apache.org/jira/browse/AMQCPP-575

2015-07-17 Thread tabish
Repository: activemq-cpp
Updated Branches:
  refs/heads/master 219b85f7c - de951c7bf


https://issues.apache.org/jira/browse/AMQCPP-576
https://issues.apache.org/jira/browse/AMQCPP-575

Adds some fixes and additional configuration around expired message
processing.  

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

Branch: refs/heads/master
Commit: de951c7bf9cd35b9faf4bb8eeb9da88d737ee6a3
Parents: 219b85f
Author: Timothy Bish tabish...@gmail.com
Authored: Fri Jul 17 12:42:25 2015 -0400
Committer: Timothy Bish tabish...@gmail.com
Committed: Fri Jul 17 12:42:25 2015 -0400

--
 .../commands/MessageAckHeaderGenerator.java |  20 ++-
 .../commands/MessageAckSourceGenerator.java |  51 ++-
 .../src/main/activemq/commands/MessageAck.cpp   |  36 +
 .../src/main/activemq/commands/MessageAck.h |  14 ++
 .../main/activemq/core/ActiveMQConnection.cpp   |  12 ++
 .../src/main/activemq/core/ActiveMQConnection.h |  14 ++
 .../activemq/core/ActiveMQConnectionFactory.cpp |  15 ++
 .../activemq/core/ActiveMQConnectionFactory.h   |  14 ++
 .../src/main/activemq/core/ActiveMQConstants.h  |   4 +-
 .../core/kernels/ActiveMQConsumerKernel.cpp |  45 +-
 .../core/kernels/ActiveMQConsumerKernel.h   |  14 ++
 .../src/test-integration/TestRegistry.cpp   |   1 +
 .../activemq/test/ExpirationTest.cpp| 147 ---
 .../activemq/test/ExpirationTest.h  |   1 +
 .../activemq/test/QueueBrowserTest.cpp  |  38 +
 .../activemq/test/QueueBrowserTest.h|   1 +
 .../test/openwire/OpenwireExpirationTest.h  |   1 +
 .../test/openwire/OpenwireQueueBrowserTest.h|   3 +-
 18 files changed, 373 insertions(+), 58 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/de951c7b/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckHeaderGenerator.java
--
diff --git 
a/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckHeaderGenerator.java
 
b/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckHeaderGenerator.java
index 7a36226..9d4e32f 100644
--- 
a/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckHeaderGenerator.java
+++ 
b/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckHeaderGenerator.java
@@ -29,7 +29,7 @@ public class MessageAckHeaderGenerator extends 
CommandHeaderGenerator {
 super.populateIncludeFilesSet();
 }
 
-protected void generateAdditionalConstructors( PrintWriter out ) {
+protected void generateAdditionalConstructors(PrintWriter out) {
 
 out.println(+getClassName()+(const PointerMessage 
message, int ackType, int messageCount););
 out.println();
@@ -39,4 +39,22 @@ public class MessageAckHeaderGenerator extends 
CommandHeaderGenerator {
 super.generateAdditionalConstructors(out);
 }
 
+protected void generateAdditonalMembers(PrintWriter out) {
+out.println(bool isPoisonAck(););
+out.println();
+out.println(bool isStandardAck(););
+out.println();
+out.println(bool isDeliveredAck(););
+out.println();
+out.println(bool isRedeliveredAck(););
+out.println();
+out.println(bool isIndividualAck(););
+out.println();
+out.println(bool isUnmatchedAck(););
+out.println();
+out.println(bool isExpiredAck(););
+out.println();
+
+super.generateAdditonalMembers( out );
+}
 }

http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/de951c7b/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckSourceGenerator.java
--
diff --git 
a/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckSourceGenerator.java
 
b/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckSourceGenerator.java
index aebc72f..cd24480 100644
--- 
a/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckSourceGenerator.java
+++ 
b/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/MessageAckSourceGenerator.java
@@ -17,10 +17,18 @@
 package 

Jenkins build is still unstable: ActiveMQ-Java8 ยป ActiveMQ :: Unit Tests #416

2015-07-17 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/ActiveMQ-Java8/org.apache.activemq$activemq-unit-tests/changes



Jenkins build is still unstable: ActiveMQ-Java8 #416

2015-07-17 Thread Apache Jenkins Server
See https://builds.apache.org/job/ActiveMQ-Java8/changes



[1/2] activemq git commit: https://issues.apache.org/jira/browse/AMQ-5875

2015-07-17 Thread gtully
Repository: activemq
Updated Branches:
  refs/heads/master e0c2c177c - a439a0c6b


https://issues.apache.org/jira/browse/AMQ-5875

Fixing a regression that caused a network bridge to recreate durable
demand improperly.


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

Branch: refs/heads/master
Commit: 2117768e0a6c7bab0225f5ba4e960bfb443188c7
Parents: e0c2c17
Author: Christopher L. Shannon (cshannon) christopher.l.shan...@gmail.com
Authored: Fri Jul 10 16:43:26 2015 +
Committer: gtully gary.tu...@gmail.com
Committed: Fri Jul 17 16:34:06 2015 +0100

--
 .../activemq/network/DurableConduitBridge.java  |  23 ++-
 .../kahadb/AbstractMultiKahaDBDeletionTest.java | 202 +++
 .../kahadb/MultiKahaDBQueueDeletionTest.java|  91 +
 .../kahadb/MultiKahaDBTopicDeletionTest.java| 176 ++--
 4 files changed, 326 insertions(+), 166 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/2117768e/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
--
diff --git 
a/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
 
b/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
index 621972c..afcb42d 100644
--- 
a/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
+++ 
b/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
@@ -18,6 +18,7 @@ package org.apache.activemq.network;
 
 import java.io.IOException;
 
+import org.apache.activemq.broker.region.Subscription;
 import org.apache.activemq.command.ActiveMQDestination;
 import org.apache.activemq.command.ConsumerId;
 import org.apache.activemq.command.ConsumerInfo;
@@ -32,6 +33,7 @@ import org.slf4j.LoggerFactory;
 public class DurableConduitBridge extends ConduitBridge {
 private static final Logger LOG = 
LoggerFactory.getLogger(DurableConduitBridge.class);
 
+@Override
 public String toString() {
 return DurableConduitBridge: + configuration.getBrokerName() + - 
+ getRemoteBrokerName();
 }
@@ -52,6 +54,7 @@ public class DurableConduitBridge extends ConduitBridge {
  * Subscriptions for these destinations are always created
  *
  */
+@Override
 protected void setupStaticDestinations() {
 super.setupStaticDestinations();
 ActiveMQDestination[] dests = configuration.isDynamicOnly() ? null : 
durableDestinations;
@@ -60,11 +63,22 @@ public class DurableConduitBridge extends ConduitBridge {
 if (isPermissableDestination(dest)  
!doesConsumerExist(dest)) {
 DemandSubscription sub = createDemandSubscription(dest);
 sub.setStaticallyIncluded(true);
-if (dest.isTopic()) {
-
sub.getLocalInfo().setSubscriptionName(getSubscriberName(dest));
-}
 try {
-addSubscription(sub);
+//Filtering by non-empty subscriptions, see AMQ-5875
+if (dest.isTopic()) {
+
sub.getLocalInfo().setSubscriptionName(getSubscriberName(dest));
+for (Subscription subscription : 
this.getRegionSubscriptions(dest)) {
+String clientId = 
subscription.getContext().getClientId();
+String subName = 
subscription.getConsumerInfo().getSubscriptionName();
+if (clientId != null  
clientId.equals(sub.getLocalInfo().getClientId())
+ subName != null  
subName.equals(sub.getLocalInfo().getSubscriptionName())) {
+addSubscription(sub);
+break;
+}
+}
+} else {
+addSubscription(sub);
+}
 } catch (IOException e) {
 LOG.error(Failed to add static destination {}, dest, 
e);
 }
@@ -74,6 +88,7 @@ public class DurableConduitBridge extends ConduitBridge {
 }
 }
 
+@Override
 protected DemandSubscription createDemandSubscription(ConsumerInfo info) 
throws IOException {
 if (addToAlreadyInterestedConsumers(info)) {
 return null; // don't want this subscription added


[2/2] activemq git commit: AMQ-5875 - rework the patch a bit to only call createDemandSubscription when we have a match to avoid trcking state in error via the bridge subscriptionMap* from configureDe

2015-07-17 Thread gtully
AMQ-5875 - rework the patch a bit to only call createDemandSubscription when we 
have a match to avoid trcking state in error via the bridge subscriptionMap* 
from configureDemandSubscription


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

Branch: refs/heads/master
Commit: a439a0c6bf693e3fd68dcb190d22187c53ec8e9f
Parents: 2117768
Author: gtully gary.tu...@gmail.com
Authored: Fri Jul 17 16:56:22 2015 +0100
Committer: gtully gary.tu...@gmail.com
Committed: Fri Jul 17 16:56:22 2015 +0100

--
 .../apache/activemq/network/DurableConduitBridge.java   | 12 
 1 file changed, 4 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/a439a0c6/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
--
diff --git 
a/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
 
b/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
index afcb42d..b4d04f6 100644
--- 
a/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
+++ 
b/activemq-broker/src/main/java/org/apache/activemq/network/DurableConduitBridge.java
@@ -61,23 +61,19 @@ public class DurableConduitBridge extends ConduitBridge {
 if (dests != null) {
 for (ActiveMQDestination dest : dests) {
 if (isPermissableDestination(dest)  
!doesConsumerExist(dest)) {
-DemandSubscription sub = createDemandSubscription(dest);
-sub.setStaticallyIncluded(true);
 try {
 //Filtering by non-empty subscriptions, see AMQ-5875
 if (dest.isTopic()) {
-
sub.getLocalInfo().setSubscriptionName(getSubscriberName(dest));
+String candidateSubName = getSubscriberName(dest);
 for (Subscription subscription : 
this.getRegionSubscriptions(dest)) {
-String clientId = 
subscription.getContext().getClientId();
 String subName = 
subscription.getConsumerInfo().getSubscriptionName();
-if (clientId != null  
clientId.equals(sub.getLocalInfo().getClientId())
- subName != null  
subName.equals(sub.getLocalInfo().getSubscriptionName())) {
+if (subName != null  
subName.equals(candidateSubName)) {
+DemandSubscription sub = 
createDemandSubscription(dest);
+sub.setStaticallyIncluded(true);
 addSubscription(sub);
 break;
 }
 }
-} else {
-addSubscription(sub);
 }
 } catch (IOException e) {
 LOG.error(Failed to add static destination {}, dest, 
e);



activemq-cpp git commit: remove some print statements that got left in.

2015-07-17 Thread tabish
Repository: activemq-cpp
Updated Branches:
  refs/heads/master de951c7bf - 2a113ce30


remove some print statements that got left in.

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

Branch: refs/heads/master
Commit: 2a113ce30a1dc414c78b13183725cdeebcd118b6
Parents: de951c7
Author: Timothy Bish tabish...@gmail.com
Authored: Fri Jul 17 14:19:38 2015 -0400
Committer: Timothy Bish tabish...@gmail.com
Committed: Fri Jul 17 14:19:38 2015 -0400

--
 .../src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp| 4 
 1 file changed, 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/2a113ce3/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
--
diff --git 
a/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp 
b/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
index 3331685..7ab08e5 100644
--- a/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
+++ b/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
@@ -379,7 +379,6 @@ namespace {
 impl-rollbackOnFailedRecoveryRedelivery();
 }
 } else {
-std::cout  TransactionSynhcronization calling acknowledge 
 std::endl;
 consumer-acknowledge();
 }
 consumer-setSynchronizationRegistered(false);
@@ -1382,11 +1381,8 @@ void ActiveMQConsumerKernel::acknowledge() {
 }
 
 if (session-isTransacted()) {
-std::cout  Consumer: rollbackOnFailedRecoveryRedelivery  
std::endl;
 this-internal-rollbackOnFailedRecoveryRedelivery();
-std::cout  Consumer: doStartTransaction  std::endl;
 session-doStartTransaction();
-std::cout  Consumer: setTransactionId  std::endl;
 
ack-setTransactionId(session-getTransactionContext()-getTransactionId());
 }
 



buildbot failure in ASF Buildbot on activemq-site-production

2015-07-17 Thread buildbot
The Buildbot has detected a new failure on builder activemq-site-production 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/activemq-site-production/builds/418

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





activemq-cpp git commit: https://issues.apache.org/jira/browse/AMQCPP-578

2015-07-17 Thread tabish
Repository: activemq-cpp
Updated Branches:
  refs/heads/master 2a113ce30 - 9ea1110e7


https://issues.apache.org/jira/browse/AMQCPP-578

send expired Ack instead of delivered when message is expired.

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

Branch: refs/heads/master
Commit: 9ea1110e72062c2c78c5560984cb3c0cff08d3f4
Parents: 2a113ce
Author: Timothy Bish tabish...@gmail.com
Authored: Fri Jul 17 14:48:20 2015 -0400
Committer: Timothy Bish tabish...@gmail.com
Committed: Fri Jul 17 14:48:20 2015 -0400

--
 .../src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9ea1110e/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
--
diff --git 
a/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp 
b/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
index 7ab08e5..ad9d77a 100644
--- a/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
+++ b/activemq-cpp/src/main/activemq/core/kernels/ActiveMQConsumerKernel.cpp
@@ -1176,7 +1176,7 @@ void 
ActiveMQConsumerKernel::afterMessageIsConsumed(PointerMessageDispatch mes
 if (this-internal-unconsumedMessages-isClosed()) {
 return;
 } else if (messageExpired) {
-acknowledge(message, ActiveMQConstants::ACK_TYPE_DELIVERED);
+acknowledge(message, ActiveMQConstants::ACK_TYPE_EXPIRED);
 return;
 } else if (session-isTransacted()) {
 return;



svn commit: r958731 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 19:31:05 2015
New Revision: 958731

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
19:31:05 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437153617175{padding:0px;}div.rbtoc1437153617175ul{list-style:disc;margin-left:0px;}div.rbtoc1437153617175li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437153617175 {padding: 0px;}
-div.rbtoc1437153617175 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437153617175 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437160891312{padding:0px;}div.rbtoc1437160891312ul{list-style:disc;margin-left:0px;}div.rbtoc1437160891312li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437160891312 {padding: 0px;}
+div.rbtoc1437160891312 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437160891312 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437153617175
+/*]]*//style/h2div class=toc-macro rbtoc1437160891312
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




buildbot success in ASF Buildbot on activemq-site-production

2015-07-17 Thread buildbot
The Buildbot has detected a restored build on builder activemq-site-production 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/activemq-site-production/builds/419

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r958749 - in /websites/production/activemq/content: cache/cms.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 22:36:03 2015
New Revision: 958749

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
22:36:03 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437168008618{padding:0px;}div.rbtoc1437168008618ul{list-style:disc;margin-left:0px;}div.rbtoc1437168008618li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437168008618 {padding: 0px;}
-div.rbtoc1437168008618 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437168008618 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437171923562{padding:0px;}div.rbtoc1437171923562ul{list-style:disc;margin-left:0px;}div.rbtoc1437171923562li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437171923562 {padding: 0px;}
+div.rbtoc1437171923562 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437171923562 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437168008618
+/*]]*//style/h2div class=toc-macro rbtoc1437171923562
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958768 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Sat Jul 18 03:25:20 2015
New Revision: 958768

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Sat Jul 18 
03:25:20 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437186006646{padding:0px;}div.rbtoc1437186006646ul{list-style:disc;margin-left:0px;}div.rbtoc1437186006646li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437186006646 {padding: 0px;}
-div.rbtoc1437186006646 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437186006646 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437189691980{padding:0px;}div.rbtoc1437189691980ul{list-style:disc;margin-left:0px;}div.rbtoc1437189691980li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437189691980 {padding: 0px;}
+div.rbtoc1437189691980 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437189691980 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437186006646
+/*]]*//style/h2div class=toc-macro rbtoc1437189691980
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958777 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Sat Jul 18 05:31:25 2015
New Revision: 958777

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Sat Jul 18 
05:31:25 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437193581478{padding:0px;}div.rbtoc1437193581478ul{list-style:disc;margin-left:0px;}div.rbtoc1437193581478li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437193581478 {padding: 0px;}
-div.rbtoc1437193581478 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437193581478 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437197016286{padding:0px;}div.rbtoc1437197016286ul{list-style:disc;margin-left:0px;}div.rbtoc1437197016286li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437197016286 {padding: 0px;}
+div.rbtoc1437197016286 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437197016286 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437193581478
+/*]]*//style/h2div class=toc-macro rbtoc1437197016286
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958764 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Sat Jul 18 02:23:42 2015
New Revision: 958764

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Sat Jul 18 
02:23:42 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437182408386{padding:0px;}div.rbtoc1437182408386ul{list-style:disc;margin-left:0px;}div.rbtoc1437182408386li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437182408386 {padding: 0px;}
-div.rbtoc1437182408386 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437182408386 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437186006646{padding:0px;}div.rbtoc1437186006646ul{list-style:disc;margin-left:0px;}div.rbtoc1437186006646li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437186006646 {padding: 0px;}
+div.rbtoc1437186006646 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437186006646 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437182408386
+/*]]*//style/h2div class=toc-macro rbtoc1437186006646
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958773 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Sat Jul 18 04:40:17 2015
New Revision: 958773

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Sat Jul 18 
04:40:17 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437189691980{padding:0px;}div.rbtoc1437189691980ul{list-style:disc;margin-left:0px;}div.rbtoc1437189691980li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437189691980 {padding: 0px;}
-div.rbtoc1437189691980 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437189691980 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437193581478{padding:0px;}div.rbtoc1437193581478ul{list-style:disc;margin-left:0px;}div.rbtoc1437193581478li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437193581478 {padding: 0px;}
+div.rbtoc1437193581478 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437193581478 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437189691980
+/*]]*//style/h2div class=toc-macro rbtoc1437193581478
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958753 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 23:31:09 2015
New Revision: 958753

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
23:31:09 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437171923562{padding:0px;}div.rbtoc1437171923562ul{list-style:disc;margin-left:0px;}div.rbtoc1437171923562li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437171923562 {padding: 0px;}
-div.rbtoc1437171923562 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437171923562 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437175333587{padding:0px;}div.rbtoc1437175333587ul{list-style:disc;margin-left:0px;}div.rbtoc1437175333587li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437175333587 {padding: 0px;}
+div.rbtoc1437175333587 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437175333587 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437171923562
+/*]]*//style/h2div class=toc-macro rbtoc1437175333587
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958756 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Sat Jul 18 00:23:47 2015
New Revision: 958756

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Sat Jul 18 
00:23:47 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437175333587{padding:0px;}div.rbtoc1437175333587ul{list-style:disc;margin-left:0px;}div.rbtoc1437175333587li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437175333587 {padding: 0px;}
-div.rbtoc1437175333587 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437175333587 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437178810040{padding:0px;}div.rbtoc1437178810040ul{list-style:disc;margin-left:0px;}div.rbtoc1437178810040li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437178810040 {padding: 0px;}
+div.rbtoc1437178810040 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437178810040 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437175333587
+/*]]*//style/h2div class=toc-macro rbtoc1437178810040
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958734 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 20:24:00 2015
New Revision: 958734

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
20:24:00 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437160891312{padding:0px;}div.rbtoc1437160891312ul{list-style:disc;margin-left:0px;}div.rbtoc1437160891312li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437160891312 {padding: 0px;}
-div.rbtoc1437160891312 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437160891312 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437164422349{padding:0px;}div.rbtoc1437164422349ul{list-style:disc;margin-left:0px;}div.rbtoc1437164422349li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437164422349 {padding: 0px;}
+div.rbtoc1437164422349 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437164422349 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437160891312
+/*]]*//style/h2div class=toc-macro rbtoc1437164422349
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958760 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Sat Jul 18 01:23:47 2015
New Revision: 958760

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Sat Jul 18 
01:23:47 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437178810040{padding:0px;}div.rbtoc1437178810040ul{list-style:disc;margin-left:0px;}div.rbtoc1437178810040li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437178810040 {padding: 0px;}
-div.rbtoc1437178810040 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437178810040 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437182408386{padding:0px;}div.rbtoc1437182408386ul{list-style:disc;margin-left:0px;}div.rbtoc1437182408386li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437182408386 {padding: 0px;}
+div.rbtoc1437182408386 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437182408386 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437178810040
+/*]]*//style/h2div class=toc-macro rbtoc1437182408386
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a




svn commit: r958740 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-17 Thread buildbot
Author: buildbot
Date: Fri Jul 17 21:23:48 2015
New Revision: 958740

Log:
Production update by buildbot for activemq

Modified:
websites/production/activemq/content/cache/cms.pageCache
websites/production/activemq/content/cache/main.pageCache
websites/production/activemq/content/cache/nms.pageCache
websites/production/activemq/content/unix-shell-script.html

Modified: websites/production/activemq/content/cache/cms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/cache/nms.pageCache
==
Binary files - no diff available.

Modified: websites/production/activemq/content/unix-shell-script.html
==
--- websites/production/activemq/content/unix-shell-script.html (original)
+++ websites/production/activemq/content/unix-shell-script.html Fri Jul 17 
21:23:48 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437164422349{padding:0px;}div.rbtoc1437164422349ul{list-style:disc;margin-left:0px;}div.rbtoc1437164422349li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437164422349 {padding: 0px;}
-div.rbtoc1437164422349 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437164422349 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437168008618{padding:0px;}div.rbtoc1437168008618ul{list-style:disc;margin-left:0px;}div.rbtoc1437168008618li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437168008618 {padding: 0px;}
+div.rbtoc1437168008618 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437168008618 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437164422349
+/*]]*//style/h2div class=toc-macro rbtoc1437168008618
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-/a/li/ul
 ullia shape=rect href=#UnixShellScript-FunctionaloverviewFunctional 
overview/a/lilia shape=rect 
href=#UnixShellScript-Configuringtheinit-scriptConfiguring the 
init-script/a
 ul class=toc-indentationlia shape=rect 
href=#UnixShellScript-Version5.11.0andhigherVersion 5.11.0 and higher/a