[2/2] activemq-artemis git commit: This closes #93 changing to ConcurrentHashMap

2015-07-22 Thread clebertsuconic
This closes #93 changing to ConcurrentHashMap


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

Branch: refs/heads/master
Commit: 0bd784df43629c80bfaec31ce786fd14f4d8bd75
Parents: 1cb372b 2a647c1
Author: Clebert Suconic clebertsuco...@apache.org
Authored: Wed Jul 22 17:45:26 2015 +0100
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 17:45:26 2015 +0100

--
 .../org/apache/activemq/artemis/utils/FactoryFinder.java| 3 ++-
 .../artemis/core/protocol/mqtt/MQTTSessionState.java| 6 +++---
 .../artemis/core/protocol/mqtt/MQTTSubscriptionManager.java | 5 +++--
 .../core/protocol/openwire/OpenWireProtocolManager.java | 3 ++-
 .../core/protocol/openwire/amq/AMQConnectionContext.java| 8 
 .../core/protocol/openwire/amq/AMQSecurityContext.java  | 9 +
 .../java/org/proton/plug/test/minimalserver/DumbServer.java | 3 ++-
 .../activemq/artemis/rest/queue/ConsumersResource.java  | 3 ++-
 .../activemq/artemis/rest/topic/SubscriptionsResource.java  | 3 ++-
 .../src/test/java/org/apache/activemq/bugs/AMQ4062Test.java | 9 +
 .../org/apache/activemq/transport/tcp/SocketTstFactory.java | 3 ++-
 11 files changed, 32 insertions(+), 23 deletions(-)
--




Jenkins build is still unstable: ActiveMQ-Java8 #421

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



Jenkins build is still unstable: ActiveMQ-Java8 » ActiveMQ :: Unit Tests #421

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



[1/2] activemq-artemis git commit: ARTEMIS-157 fixing isHA on connectionFactory

2015-07-22 Thread clebertsuconic
Repository: activemq-artemis
Updated Branches:
  refs/heads/master 0bd784df4 - 414d4e24e


ARTEMIS-157 fixing isHA on connectionFactory


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

Branch: refs/heads/master
Commit: d5dde68f0cf9e8f73ef5c3d6274459cf6d0e3eed
Parents: 0bd784d
Author: Clebert Suconic clebertsuco...@apache.org
Authored: Wed Jul 22 17:17:37 2015 +0100
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 17:46:04 2015 +0100

--
 .../org/apache/activemq/artemis/utils/uri/URISchema.java |  2 +-
 .../apache/activemq/artemis/uri/ConnectionOptions.java   | 11 +++
 .../connection/ConnectionFactorySerializationTest.java   |  1 +
 3 files changed, 13 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d5dde68f/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/uri/URISchema.java
--
diff --git 
a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/uri/URISchema.java
 
b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/uri/URISchema.java
index eca40f2..e7ee1c1 100644
--- 
a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/uri/URISchema.java
+++ 
b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/uri/URISchema.java
@@ -234,7 +234,7 @@ public abstract class URISchemaT, P
PropertyDescriptor[] descriptors = 
beanUtils.getPropertyUtils().getPropertyDescriptors(bean);
for (PropertyDescriptor descriptor : descriptors)
{
-  if (descriptor.getReadMethod() != null  
descriptor.getWriteMethod() != null  isWriteable(descriptor, ignored))
+  if (descriptor.getReadMethod() != null  
isWriteable(descriptor, ignored))
   {
  String value = beanUtils.getProperty(bean, 
descriptor.getName());
  if (value != null)

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d5dde68f/artemis-core-client/src/main/java/org/apache/activemq/artemis/uri/ConnectionOptions.java
--
diff --git 
a/artemis-core-client/src/main/java/org/apache/activemq/artemis/uri/ConnectionOptions.java
 
b/artemis-core-client/src/main/java/org/apache/activemq/artemis/uri/ConnectionOptions.java
index e1b0bce..2f50b48 100644
--- 
a/artemis-core-client/src/main/java/org/apache/activemq/artemis/uri/ConnectionOptions.java
+++ 
b/artemis-core-client/src/main/java/org/apache/activemq/artemis/uri/ConnectionOptions.java
@@ -63,6 +63,17 @@ public class ConnectionOptions
   this.ha = ha;
}
 
+   /** Se need both options (ha / HA in case of typos on the URI) */
+   public boolean isHA()
+   {
+  return ha;
+   }
+
+   public void setHA(boolean ha)
+   {
+  this.ha = ha;
+   }
+
@Override
public String toString()
{

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d5dde68f/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/jms/connection/ConnectionFactorySerializationTest.java
--
diff --git 
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/jms/connection/ConnectionFactorySerializationTest.java
 
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/jms/connection/ConnectionFactorySerializationTest.java
index 036ce32..803dfee 100644
--- 
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/jms/connection/ConnectionFactorySerializationTest.java
+++ 
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/jms/connection/ConnectionFactorySerializationTest.java
@@ -144,6 +144,7 @@ public class ConnectionFactorySerializationTest extends 
JMSTestBase
   byte[] x = serialize(cf);
   ActiveMQConnectionFactory y = deserialize(x, 
ActiveMQConnectionFactory.class);
   checkEquals(cf, y);
+  Assert.assertEquals(cf.isHA(), y.isHA());
   TransportConfiguration[] staticConnectors = y.getStaticConnectors();
   Assert.assertEquals(staticConnectors.length, 2);
   TransportConfiguration tc0 = cf.getStaticConnectors()[0];



[2/2] activemq-artemis git commit: This closes #94 ARTEMIS-157 - isHA ignored on serialization

2015-07-22 Thread clebertsuconic
This closes #94 ARTEMIS-157 - isHA ignored on serialization


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

Branch: refs/heads/master
Commit: 414d4e24e820074e01088ee1c259caf79d6ceda8
Parents: 0bd784d d5dde68
Author: Clebert Suconic clebertsuco...@apache.org
Authored: Wed Jul 22 18:02:43 2015 +0100
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 18:02:43 2015 +0100

--
 .../org/apache/activemq/artemis/utils/uri/URISchema.java |  2 +-
 .../apache/activemq/artemis/uri/ConnectionOptions.java   | 11 +++
 .../connection/ConnectionFactorySerializationTest.java   |  1 +
 3 files changed, 13 insertions(+), 1 deletion(-)
--




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

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 17:25:09 2015
New Revision: 959186

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 Wed Jul 22 
17:25:09 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437578422141{padding:0px;}div.rbtoc1437578422141ul{list-style:disc;margin-left:0px;}div.rbtoc1437578422141li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437578422141 {padding: 0px;}
-div.rbtoc1437578422141 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437578422141 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437585666554{padding:0px;}div.rbtoc1437585666554ul{list-style:disc;margin-left:0px;}div.rbtoc1437585666554li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437585666554 {padding: 0px;}
+div.rbtoc1437585666554 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437585666554 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437578422141
+/*]]*//style/h2div class=toc-macro rbtoc1437585666554
 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: r959207 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 20:24:05 2015
New Revision: 959207

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 Wed Jul 22 
20:24:05 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437592809291{padding:0px;}div.rbtoc1437592809291ul{list-style:disc;margin-left:0px;}div.rbtoc1437592809291li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437592809291 {padding: 0px;}
-div.rbtoc1437592809291 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437592809291 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437596409340{padding:0px;}div.rbtoc1437596409340ul{list-style:disc;margin-left:0px;}div.rbtoc1437596409340li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437596409340 {padding: 0px;}
+div.rbtoc1437596409340 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437596409340 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437592809291
+/*]]*//style/h2div class=toc-macro rbtoc1437596409340
 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: r959154 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 07:26:31 2015
New Revision: 959154

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 Wed Jul 22 
07:26:31 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437546050587{padding:0px;}div.rbtoc1437546050587ul{list-style:disc;margin-left:0px;}div.rbtoc1437546050587li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437546050587 {padding: 0px;}
-div.rbtoc1437546050587 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437546050587 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437549687301{padding:0px;}div.rbtoc1437549687301ul{list-style:disc;margin-left:0px;}div.rbtoc1437549687301li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437549687301 {padding: 0px;}
+div.rbtoc1437549687301 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437549687301 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437546050587
+/*]]*//style/h2div class=toc-macro rbtoc1437549687301
 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
@@ -105,7 +105,9 @@ bin/activemq browse --amqurl tcp://local
 pre class=brush: java; gutter: false; theme: Default 
style=font-size:12px;bin/activemq decrypt --input 'BkiT42A0CZfL1SanJIgxvQ==' 
--password asdasdasdasd/pre
 /div/div/lilipstrongencrypt/strong - Encrypts given text/pdiv 
class=code panel pdl style=border-width: 1px;div class=codeContent 
panelContent pdl
 pre class=brush: java; gutter: false; theme: Default 
style=font-size:12px;bin/activemq encrypt --password TESTPASSWORD --input 
FOOBAR/pre
-/div/div/lilipstrongexport/strong - Exports a stopped brokers 
data files to an archive file/p/lilipstronglist/strong - Lists all 
available brokers in the specified JMX 
context/p/lilipstrongpurge/strong - Delete selected destination's 
messages that matches the message selector/pdiv class=code panel pdl 
style=border-width: 1px;div class=codeContent panelContent pdl
+/div/div/lilipstrongexport/strong - Exports a stopped brokers 
data files to an archive file for importing to another brokers like ActiveMQ 
Artemis/pdiv class=code panel pdl style=border-width: 1px;div 
class=codeContent panelContent pdl
+pre class=brush: java; gutter: false; theme: Default 
style=font-size:12px;$ bin/activemq export --file=archivefile/pre
+/div/div/lilipstronglist/strong - Lists all available brokers in 
the specified JMX context/p/lilipstrongpurge/strong - Delete 
selected destination's messages that matches the message selector/pdiv 
class=code panel pdl style=border-width: 1px;div class=codeContent 
panelContent pdl
 pre class=brush: java; gutter: false; theme: Default 
style=font-size:12px;bin/activemq purge FOO.BAR # use jmx access data from 
configuration
 bin/activemq purge --jmxurl 
service:jmx:rmi:///jndi/rmi://127.0.0.1:11098/jmxrmi --jmxuser controlRole 
--jmxpassword abcd1234 FOO.BAR/pre
 /div/div/lilipstrongquery/strong - Display selected broker 
component's attributes and statistics/pdiv class=code panel pdl 
style=border-width: 1px;div class=codeContent panelContent pdl




buildbot failure in ASF Buildbot on activemq-site-production

2015-07-22 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/533

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





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

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 06:24:45 2015
New Revision: 959152

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 Wed Jul 22 
06:24:45 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437542468250{padding:0px;}div.rbtoc1437542468250ul{list-style:disc;margin-left:0px;}div.rbtoc1437542468250li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437542468250 {padding: 0px;}
-div.rbtoc1437542468250 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437542468250 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437546050587{padding:0px;}div.rbtoc1437546050587ul{list-style:disc;margin-left:0px;}div.rbtoc1437546050587li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437546050587 {padding: 0px;}
+div.rbtoc1437546050587 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437546050587 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437542468250
+/*]]*//style/h2div class=toc-macro rbtoc1437546050587
 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




Jenkins build is still unstable: ActiveMQ-Java7 » ActiveMQ :: Unit Tests #765

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



Jenkins build is still unstable: ActiveMQ-Java7 #765

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



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

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 10:23:36 2015
New Revision: 959160

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 Wed Jul 22 
10:23:36 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437556813219{padding:0px;}div.rbtoc1437556813219ul{list-style:disc;margin-left:0px;}div.rbtoc1437556813219li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437556813219 {padding: 0px;}
-div.rbtoc1437556813219 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437556813219 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437560420472{padding:0px;}div.rbtoc1437560420472ul{list-style:disc;margin-left:0px;}div.rbtoc1437560420472li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437560420472 {padding: 0px;}
+div.rbtoc1437560420472 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437560420472 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437556813219
+/*]]*//style/h2div class=toc-macro rbtoc1437560420472
 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-artemis git commit: Using ConcurrentMap instead on MQTTSessionState

2015-07-22 Thread clebertsuconic
Repository: activemq-artemis
Updated Branches:
  refs/heads/master 5a57bf6f2 - 5c4511b59


Using ConcurrentMap instead on MQTTSessionState


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

Branch: refs/heads/master
Commit: 5c4511b59f1e3188cca1bb0422b6fa20c0d75eec
Parents: 5a57bf6
Author: Clebert Suconic clebertsuco...@apache.org
Authored: Wed Jul 22 11:43:53 2015 +0100
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 11:44:03 2015 +0100

--
 .../artemis/core/protocol/mqtt/MQTTSessionState.java | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/5c4511b5/artemis-protocols/artemis-mqtt-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/mqtt/MQTTSessionState.java
--
diff --git 
a/artemis-protocols/artemis-mqtt-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/mqtt/MQTTSessionState.java
 
b/artemis-protocols/artemis-mqtt-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/mqtt/MQTTSessionState.java
index 468d43a..38fea75 100644
--- 
a/artemis-protocols/artemis-mqtt-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/mqtt/MQTTSessionState.java
+++ 
b/artemis-protocols/artemis-mqtt-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/mqtt/MQTTSessionState.java
@@ -17,17 +17,18 @@
 
 package org.apache.activemq.artemis.core.protocol.mqtt;
 
-import io.netty.handler.codec.mqtt.MqttTopicSubscription;
-import org.apache.activemq.artemis.api.core.Pair;
-import org.apache.activemq.artemis.core.server.ServerMessage;
-
 import java.util.Collection;
 import java.util.HashSet;
 import java.util.Map;
 import java.util.Set;
 import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.ConcurrentMap;
 import java.util.concurrent.atomic.AtomicInteger;
 
+import io.netty.handler.codec.mqtt.MqttTopicSubscription;
+import org.apache.activemq.artemis.api.core.Pair;
+import org.apache.activemq.artemis.core.server.ServerMessage;
+
 public class MQTTSessionState
 {
private String clientId;
@@ -52,7 +53,7 @@ public class MQTTSessionState
// Objects track the Outbound message references
private MapInteger, PairString, Long outboundMessageReferenceStore;
 
-   private ConcurrentHashMapString, ConcurrentHashMapLong, Integer 
reverseOutboundReferenceStore;
+   private ConcurrentMapString, ConcurrentHashMapLong, Integer 
reverseOutboundReferenceStore;
 
private final Object outboundLock = new Object();
 



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

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 11:24:50 2015
New Revision: 959163

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 Wed Jul 22 
11:24:50 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437560420472{padding:0px;}div.rbtoc1437560420472ul{list-style:disc;margin-left:0px;}div.rbtoc1437560420472li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437560420472 {padding: 0px;}
-div.rbtoc1437560420472 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437560420472 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437564050592{padding:0px;}div.rbtoc1437564050592ul{list-style:disc;margin-left:0px;}div.rbtoc1437564050592li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437564050592 {padding: 0px;}
+div.rbtoc1437564050592 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437564050592 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437560420472
+/*]]*//style/h2div class=toc-macro rbtoc1437564050592
 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: r959158 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 09:24:26 2015
New Revision: 959158

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 Wed Jul 22 
09:24:26 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437549687301{padding:0px;}div.rbtoc1437549687301ul{list-style:disc;margin-left:0px;}div.rbtoc1437549687301li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437549687301 {padding: 0px;}
-div.rbtoc1437549687301 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437549687301 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437556813219{padding:0px;}div.rbtoc1437556813219ul{list-style:disc;margin-left:0px;}div.rbtoc1437556813219li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437556813219 {padding: 0px;}
+div.rbtoc1437556813219 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437556813219 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437549687301
+/*]]*//style/h2div class=toc-macro rbtoc1437556813219
 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-22 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/534

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





[1/2] activemq-artemis git commit: This closes #91 Stomp changes

2015-07-22 Thread clebertsuconic
Repository: activemq-artemis
Updated Branches:
  refs/heads/master 5c4511b59 - 9ec45c023


This closes #91 Stomp changes


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

Branch: refs/heads/master
Commit: 9ec45c02301f55589a91c66df7ad347d7afb3e58
Parents: 5c4511b 45d1601
Author: Clebert Suconic clebertsuco...@apache.org
Authored: Wed Jul 22 11:48:42 2015 +0100
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 11:48:42 2015 +0100

--
 .../apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java   | 2 +-
 .../activemq/artemis/core/protocol/stomp/StompConnection.java  | 2 +-
 .../artemis/core/protocol/stomp/StompProtocolManagerFactory.java   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--




[2/2] activemq-artemis git commit: Make some STOMP fields final

2015-07-22 Thread clebertsuconic
Make some STOMP fields final


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

Branch: refs/heads/master
Commit: 45d1601334016e1d8762d08307ade53ffb8e5763
Parents: 5c4511b
Author: Ville Skyttä ville.sky...@iki.fi
Authored: Mon Jul 20 10:32:56 2015 +0300
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 11:48:42 2015 +0100

--
 .../apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java   | 2 +-
 .../activemq/artemis/core/protocol/stomp/StompConnection.java  | 2 +-
 .../artemis/core/protocol/stomp/StompProtocolManagerFactory.java   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/45d16013/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java
--
diff --git 
a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java
 
b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java
index 474ea3d..fff613a 100644
--- 
a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java
+++ 
b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/SimpleBytes.java
@@ -21,7 +21,7 @@ import java.nio.charset.StandardCharsets;
 
 public class SimpleBytes
 {
-   private int step;
+   private final int step;
private byte[] contents;
private int index;
 

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/45d16013/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
--
diff --git 
a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
 
b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
index df03baf..1929b68 100644
--- 
a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
+++ 
b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
@@ -92,7 +92,7 @@ public final class StompConnection implements 
RemotingConnection
 
private final Object sendLock = new Object();
 
-   private int minLargeMessageSize;
+   private final int minLargeMessageSize;
 
public StompFrame decode(ActiveMQBuffer buffer) throws 
ActiveMQStompException
{

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/45d16013/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManagerFactory.java
--
diff --git 
a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManagerFactory.java
 
b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManagerFactory.java
index c65593b..381b38d 100644
--- 
a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManagerFactory.java
+++ 
b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManagerFactory.java
@@ -29,7 +29,7 @@ public class StompProtocolManagerFactory extends 
AbstractProtocolManagerFactory
 
private static final String MODULE_NAME = artemis-stomp-protocol;
 
-   private static String[] SUPPORTED_PROTOCOLS = {STOMP_PROTOCOL_NAME};
+   private static final String[] SUPPORTED_PROTOCOLS = {STOMP_PROTOCOL_NAME};
 
public ProtocolManager createProtocolManager(final ActiveMQServer server, 
final ListStompFrameInterceptor incomingInterceptors, 
ListStompFrameInterceptor outgoingInterceptors)
{



[1/2] activemq-artemis git commit: This closes #92 Deprecating property

2015-07-22 Thread clebertsuconic
Repository: activemq-artemis
Updated Branches:
  refs/heads/master 9ec45c023 - 1cb372bcd


This closes #92 Deprecating property


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

Branch: refs/heads/master
Commit: 1cb372bcd8713dd7aa7e6fb3eb38fde204193c3d
Parents: 9ec45c0 d6f8ed8
Author: Clebert Suconic clebertsuco...@apache.org
Authored: Wed Jul 22 11:54:18 2015 +0100
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 11:54:18 2015 +0100

--
 .../artemis/core/remoting/impl/netty/TransportConstants.java   | 2 ++
 .../artemis/tests/integration/stomp/v11/StompV11TestBase.java  | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
--




[2/2] activemq-artemis git commit: Deprecate PROTOCOL_PROP_NAME, avoid deprecation warning on STOMP tests

2015-07-22 Thread clebertsuconic
Deprecate PROTOCOL_PROP_NAME, avoid deprecation warning on STOMP tests


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

Branch: refs/heads/master
Commit: d6f8ed8d70d9dc8d3e7760ca8234d1ff87f38150
Parents: 9ec45c0
Author: Ville Skyttä ville.sky...@iki.fi
Authored: Wed Jul 22 10:21:25 2015 +0300
Committer: Clebert Suconic clebertsuco...@apache.org
Committed: Wed Jul 22 11:54:18 2015 +0100

--
 .../artemis/core/remoting/impl/netty/TransportConstants.java   | 2 ++
 .../artemis/tests/integration/stomp/v11/StompV11TestBase.java  | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d6f8ed8d/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
--
diff --git 
a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
 
b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
index 091fba5..9415339 100644
--- 
a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
+++ 
b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java
@@ -53,6 +53,8 @@ public class TransportConstants
 
public static final String USE_INVM_PROP_NAME = useInvm;
 
+   /** @deprecated use PROTOCOLS_PROP_NAME */
+   @Deprecated
public static final String PROTOCOL_PROP_NAME = protocol;
 
public static final String PROTOCOLS_PROP_NAME = protocols;

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d6f8ed8d/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11TestBase.java
--
diff --git 
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11TestBase.java
 
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11TestBase.java
index 9965475..8fee859 100644
--- 
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11TestBase.java
+++ 
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11TestBase.java
@@ -100,7 +100,7 @@ public abstract class StompV11TestBase extends 
ActiveMQTestBase
protected JMSServerManager createServer() throws Exception
{
   MapString, Object params = new HashMapString, Object();
-  params.put(TransportConstants.PROTOCOL_PROP_NAME, 
StompProtocolManagerFactory.STOMP_PROTOCOL_NAME);
+  params.put(TransportConstants.PROTOCOLS_PROP_NAME, 
StompProtocolManagerFactory.STOMP_PROTOCOL_NAME);
   params.put(TransportConstants.PORT_PROP_NAME, 
TransportConstants.DEFAULT_STOMP_PORT);
   params.put(TransportConstants.STOMP_CONSUMERS_CREDIT, -1);
   TransportConfiguration stompTransport = new 
TransportConfiguration(NettyAcceptorFactory.class.getName(), params);



buildbot failure in ASF Buildbot on activemq-site-production

2015-07-22 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/537

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





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

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



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

2015-07-22 Thread buildbot
Author: buildbot
Date: Thu Jul 23 02:22:15 2015
New Revision: 959233

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 Thu Jul 23 
02:22:15 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437614413647{padding:0px;}div.rbtoc1437614413647ul{list-style:disc;margin-left:0px;}div.rbtoc1437614413647li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437614413647 {padding: 0px;}
-div.rbtoc1437614413647 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437614413647 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437618009047{padding:0px;}div.rbtoc1437618009047ul{list-style:disc;margin-left:0px;}div.rbtoc1437618009047li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437618009047 {padding: 0px;}
+div.rbtoc1437618009047 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437618009047 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437614413647
+/*]]*//style/h2div class=toc-macro rbtoc1437618009047
 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: r959246 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Thu Jul 23 05:25:29 2015
New Revision: 959246

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 Thu Jul 23 
05:25:29 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437625292505{padding:0px;}div.rbtoc1437625292505ul{list-style:disc;margin-left:0px;}div.rbtoc1437625292505li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437625292505 {padding: 0px;}
-div.rbtoc1437625292505 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437625292505 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437628875557{padding:0px;}div.rbtoc1437628875557ul{list-style:disc;margin-left:0px;}div.rbtoc1437628875557li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437628875557 {padding: 0px;}
+div.rbtoc1437628875557 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437628875557 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437625292505
+/*]]*//style/h2div class=toc-macro rbtoc1437628875557
 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: r959241 - in /websites/production/activemq/content: cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Thu Jul 23 04:25:16 2015
New Revision: 959241

Log:
Production update by buildbot for activemq

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

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 Thu Jul 23 
04:25:16 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437621738026{padding:0px;}div.rbtoc1437621738026ul{list-style:disc;margin-left:0px;}div.rbtoc1437621738026li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437621738026 {padding: 0px;}
-div.rbtoc1437621738026 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437621738026 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437625292505{padding:0px;}div.rbtoc1437625292505ul{list-style:disc;margin-left:0px;}div.rbtoc1437625292505li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437625292505 {padding: 0px;}
+div.rbtoc1437625292505 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437625292505 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437621738026
+/*]]*//style/h2div class=toc-macro rbtoc1437625292505
 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: r959217 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 22:23:53 2015
New Revision: 959217

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 Wed Jul 22 
22:23:53 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc143769143{padding:0px;}div.rbtoc143769143ul{list-style:disc;margin-left:0px;}div.rbtoc143769143li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc143769143 {padding: 0px;}
-div.rbtoc143769143 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc143769143 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437603607268{padding:0px;}div.rbtoc1437603607268ul{list-style:disc;margin-left:0px;}div.rbtoc1437603607268li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437603607268 {padding: 0px;}
+div.rbtoc1437603607268 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437603607268 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc143769143
+/*]]*//style/h2div class=toc-macro rbtoc1437603607268
 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: r959221 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 23:24:00 2015
New Revision: 959221

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 Wed Jul 22 
23:24:00 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437603607268{padding:0px;}div.rbtoc1437603607268ul{list-style:disc;margin-left:0px;}div.rbtoc1437603607268li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437603607268 {padding: 0px;}
-div.rbtoc1437603607268 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437603607268 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437607208158{padding:0px;}div.rbtoc1437607208158ul{list-style:disc;margin-left:0px;}div.rbtoc1437607208158li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437607208158 {padding: 0px;}
+div.rbtoc1437607208158 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437607208158 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437603607268
+/*]]*//style/h2div class=toc-macro rbtoc1437607208158
 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: r959225 - in /websites/production/activemq/content: cache/cms.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Thu Jul 23 00:25:28 2015
New Revision: 959225

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 Thu Jul 23 
00:25:28 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437607208158{padding:0px;}div.rbtoc1437607208158ul{list-style:disc;margin-left:0px;}div.rbtoc1437607208158li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437607208158 {padding: 0px;}
-div.rbtoc1437607208158 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437607208158 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437610810057{padding:0px;}div.rbtoc1437610810057ul{list-style:disc;margin-left:0px;}div.rbtoc1437610810057li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437610810057 {padding: 0px;}
+div.rbtoc1437610810057 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437610810057 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437607208158
+/*]]*//style/h2div class=toc-macro rbtoc1437610810057
 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: r959170 - in /websites/production/activemq/content: cache/cms.pageCache cache/main.pageCache cache/nms.pageCache unix-shell-script.html

2015-07-22 Thread buildbot
Author: buildbot
Date: Wed Jul 22 14:24:35 2015
New Revision: 959170

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 Wed Jul 22 
14:24:35 2015
@@ -82,12 +82,12 @@
   tbody
 tr
 td valign=top width=100%
-div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437571212411{padding:0px;}div.rbtoc1437571212411ul{list-style:disc;margin-left:0px;}div.rbtoc1437571212411li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
-div.rbtoc1437571212411 {padding: 0px;}
-div.rbtoc1437571212411 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1437571212411 li {margin-left: 0px;padding-left: 0px;}
+div class=wiki-content maincontenth2 
id=UnixShellScript-/*lt;![CDATA[*/div.rbtoc1437574834951{padding:0px;}div.rbtoc1437574834951ul{list-style:disc;margin-left:0px;}div.rbtoc1437574834951li{margin-left:0px;padding-left:0px;}/*]]gt;*/#UnixShellScript-Functionaloverview#UnixShellScript-Functionaloverstyle
 type=text/css/*![CDATA[*/
+div.rbtoc1437574834951 {padding: 0px;}
+div.rbtoc1437574834951 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1437574834951 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/h2div class=toc-macro rbtoc1437571212411
+/*]]*//style/h2div class=toc-macro rbtoc1437574834951
 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