buildbot failure in ASF Buildbot on activemq-site-production

2015-09-21 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/2001

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 git commit: https://issues.apache.org/jira/browse/AMQ-5938 - remove unnecessary topic cast - breaks auth scenario. Fix and test

2015-09-21 Thread gtully
Repository: activemq
Updated Branches:
  refs/heads/master e9aedc801 -> cc9b9b084


https://issues.apache.org/jira/browse/AMQ-5938 - remove unnecessary topic cast 
- breaks auth scenario. Fix and test


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

Branch: refs/heads/master
Commit: cc9b9b0843d7e404bdeca1a1dd09d9a9e958f967
Parents: e9aedc8
Author: gtully 
Authored: Mon Sep 21 14:48:44 2015 +0100
Committer: gtully 
Committed: Mon Sep 21 14:48:44 2015 +0100

--
 .../broker/jmx/ManagedRegionBroker.java |  4 +--
 ...ableSubscriptionOfflineBrowseRemoveTest.java | 33 
 .../DurableSubscriptionOfflineTestBase.java |  5 +++
 3 files changed, 40 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/cc9b9b08/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java
--
diff --git 
a/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java
 
b/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java
index 854f5e0..601fd15 100755
--- 
a/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java
+++ 
b/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ManagedRegionBroker.java
@@ -565,7 +565,7 @@ public class ManagedRegionBroker extends RegionBroker {
 public void remove(SubscriptionView view, String messageId)  throws 
Exception {
 ActiveMQDestination destination = getTopicDestination(view);
 if (destination != null) {
-final Topic topic = (Topic) 
getTopicRegion().getDestinationMap().get(destination);
+final Destination topic = 
getTopicRegion().getDestinationMap().get(destination);
 final MessageAck messageAck = new MessageAck();
 messageAck.setMessageID(new MessageId(messageId));
 messageAck.setDestination(destination);
@@ -588,7 +588,7 @@ public class ManagedRegionBroker extends RegionBroker {
 protected Message[] getSubscriberMessages(SubscriptionView view) {
 ActiveMQDestination destination = getTopicDestination(view);
 if (destination != null) {
-Topic topic = (Topic) 
getTopicRegion().getDestinationMap().get(destination);
+Destination topic = 
getTopicRegion().getDestinationMap().get(destination);
 return topic.browse();
 
 } else {

http://git-wip-us.apache.org/repos/asf/activemq/blob/cc9b9b08/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/DurableSubscriptionOfflineBrowseRemoveTest.java
--
diff --git 
a/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/DurableSubscriptionOfflineBrowseRemoveTest.java
 
b/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/DurableSubscriptionOfflineBrowseRemoveTest.java
index 0532ede..7c747b6 100644
--- 
a/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/DurableSubscriptionOfflineBrowseRemoveTest.java
+++ 
b/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/DurableSubscriptionOfflineBrowseRemoveTest.java
@@ -29,8 +29,15 @@ import javax.management.ObjectName;
 import javax.management.openmbean.CompositeData;
 import org.apache.activemq.ActiveMQConnectionFactory;
 import org.apache.activemq.TestSupport;
+import org.apache.activemq.broker.BrokerPlugin;
 import org.apache.activemq.broker.BrokerService;
 import org.apache.activemq.broker.jmx.DurableSubscriptionViewMBean;
+import org.apache.activemq.filter.DestinationMapEntry;
+import org.apache.activemq.security.AuthenticationUser;
+import org.apache.activemq.security.AuthorizationEntry;
+import org.apache.activemq.security.AuthorizationPlugin;
+import org.apache.activemq.security.DefaultAuthorizationMap;
+import org.apache.activemq.security.SimpleAuthenticationPlugin;
 import org.apache.activemq.store.PersistenceAdapter;
 import org.apache.activemq.store.jdbc.JDBCPersistenceAdapter;
 import org.junit.Test;
@@ -48,6 +55,7 @@ public class DurableSubscriptionOfflineBrowseRemoveTest 
extends DurableSubscript
 
 private static final Logger LOG = 
LoggerFactory.getLogger(DurableSubscriptionOfflineBrowseRemoveTest.class);
 
+public static final String IDENTITY = "milly";
 public boolean keepDurableSubsActive;
 
 @Parameterized.Parameters(name = "PA-{0}.KeepSubsActive-{1}")
@@ -70,6 +78,29 @@ public class DurableSubscriptionOfflineBrowseRemoveTest 
extends DurableSubscript
 }
 
 @Override
+

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

2015-09-21 Thread clebertsuconic
This closes #172


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

Branch: refs/heads/master
Commit: bfaaae8c9100e8edb1247baafe247586c7ca903d
Parents: dc3b010 0354944
Author: Clebert Suconic 
Authored: Mon Sep 21 18:36:18 2015 -0400
Committer: Clebert Suconic 
Committed: Mon Sep 21 18:36:18 2015 -0400

--
 examples/features/perf/perf/pom.xml |  6 
 examples/features/perf/perf/readme.html |  6 ++--
 .../activemq/artemis/jms/example/PerfBase.java  | 22 +++---
 .../artemis/jms/example/PerfParams.java | 32 +---
 .../perf/src/main/resources/perf.properties | 18 +++
 5 files changed, 66 insertions(+), 18 deletions(-)
--




[1/2] activemq-artemis git commit: modifying perf example to accept amqp connections as well

2015-09-21 Thread clebertsuconic
Repository: activemq-artemis
Updated Branches:
  refs/heads/master dc3b01036 -> bfaaae8c9


modifying perf example to accept amqp connections as well


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

Branch: refs/heads/master
Commit: 0354944e8f6f261a405248ac497c77e50d3b24d2
Parents: dc3b010
Author: Clebert Suconic 
Authored: Mon Sep 21 17:45:00 2015 -0400
Committer: Clebert Suconic 
Committed: Mon Sep 21 17:46:50 2015 -0400

--
 examples/features/perf/perf/pom.xml |  6 
 examples/features/perf/perf/readme.html |  6 ++--
 .../activemq/artemis/jms/example/PerfBase.java  | 22 +++---
 .../artemis/jms/example/PerfParams.java | 32 +---
 .../perf/src/main/resources/perf.properties | 18 +++
 5 files changed, 66 insertions(+), 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/0354944e/examples/features/perf/perf/pom.xml
--
diff --git a/examples/features/perf/perf/pom.xml 
b/examples/features/perf/perf/pom.xml
index d5307e6..d67d47d 100644
--- a/examples/features/perf/perf/pom.xml
+++ b/examples/features/perf/perf/pom.xml
@@ -57,6 +57,12 @@ under the License.
  artemis-cli
  ${project.version}
   
+  
+ org.apache.qpid
+ qpid-jms-client
+ 0.5.0
+  
+

 


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/0354944e/examples/features/perf/perf/readme.html
--
diff --git a/examples/features/perf/perf/readme.html 
b/examples/features/perf/perf/readme.html
index aa42266..ab2d50e 100644
--- a/examples/features/perf/perf/readme.html
+++ b/examples/features/perf/perf/readme.html
@@ -27,11 +27,11 @@ under the License.
   
 JMS Simple Performance
 
-To start the server run mvn verify -Pexample
+To start the server run mvn verify -Pserver
 
-To start the listener run mvn -Plistener package
+To start the listener run mvn -Plistener verify
 
-To start the sender run mvn -Psender package
+To start the sender run mvn -Psender verify
 
 To configure the clients simply edit the perf.properties 
or client.jndi.properties in the
 src/main/resources directory

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/0354944e/examples/features/perf/perf/src/main/java/org/apache/activemq/artemis/jms/example/PerfBase.java
--
diff --git 
a/examples/features/perf/perf/src/main/java/org/apache/activemq/artemis/jms/example/PerfBase.java
 
b/examples/features/perf/perf/src/main/java/org/apache/activemq/artemis/jms/example/PerfBase.java
index 8fcafa4..006d495 100644
--- 
a/examples/features/perf/perf/src/main/java/org/apache/activemq/artemis/jms/example/PerfBase.java
+++ 
b/examples/features/perf/perf/src/main/java/org/apache/activemq/artemis/jms/example/PerfBase.java
@@ -37,6 +37,7 @@ import java.util.logging.Logger;
 
 import org.apache.activemq.artemis.utils.TokenBucketLimiter;
 import org.apache.activemq.artemis.utils.TokenBucketLimiterImpl;
+import org.apache.qpid.jms.JmsConnectionFactory;
 
 public abstract class PerfBase {
 
@@ -99,7 +100,7 @@ public abstract class PerfBase {
   boolean dupsOK = 
Boolean.valueOf(props.getProperty("dups-ok-acknowlege"));
   boolean disableMessageID = 
Boolean.valueOf(props.getProperty("disable-message-id"));
   boolean disableTimestamp = 
Boolean.valueOf(props.getProperty("disable-message-timestamp"));
-  boolean openwire = Boolean.valueOf(props.getProperty("openwire", 
"true"));
+  String clientLibrary = props.getProperty("client-library", "core");
   String uri = props.getProperty("server-uri", "tcp://localhost:61616");
 
   PerfBase.log.info("num-messages: " + noOfMessages);
@@ -115,7 +116,7 @@ public abstract class PerfBase {
   PerfBase.log.info("disable-message-timestamp: " + disableTimestamp);
   PerfBase.log.info("dups-ok-acknowledge: " + dupsOK);
   PerfBase.log.info("server-uri: " + uri);
-  PerfBase.log.info("openwire:" + openwire);
+  PerfBase.log.info("client-library:" + clientLibrary);
 
   PerfParams perfParams = new PerfParams();
   perfParams.setNoOfMessagesToSend(noOfMessages);
@@ -130,7 +131,7 @@ public abstract class PerfBase {
   perfParams.setDisableMessageID(disableMessageID);
   perfParams.setDisableTimestamp(disableTimestamp);
   perfParams.setDupsOK(dupsOK);
-  

Jenkins build is back to stable : ActiveMQ-Java7 » ActiveMQ :: Unit Tests #823

2015-09-21 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: ActiveMQ-Java7 » ActiveMQ :: HTTP Protocol Support #823

2015-09-21 Thread Apache Jenkins Server
See 




Jenkins build became unstable: ActiveMQ-Java7 » ActiveMQ :: RA #823

2015-09-21 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: ActiveMQ-Java7 #823

2015-09-21 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: ActiveMQ-Java7-All-UnitTests #233

2015-09-21 Thread Apache Jenkins Server
See 



[jira] [Closed] (APLO-387) MQTT Client (Paho, tcp connector) does not receive original topic name in case of wildcard subscription (topic/#)

2015-09-21 Thread clajder (JIRA)

 [ 
https://issues.apache.org/jira/browse/APLO-387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

clajder closed APLO-387.

Resolution: Invalid

> MQTT Client (Paho, tcp connector) does not receive original topic name in 
> case of wildcard subscription (topic/#)
> -
>
> Key: APLO-387
> URL: https://issues.apache.org/jira/browse/APLO-387
> Project: ActiveMQ Apollo
>  Issue Type: Bug
>Affects Versions: 1.7
>Reporter: clajder
>
> For the next MQTT pub-sub config:
> pub: topic/
> sub: topic/#
> the subscriber receives topic name as "topic/#" instead of right one which is 
> 'topic/'.
> This defect leads to other high severity issues as sub is not able to 
> determine actual message source.
> Worth to note that this issue constantly reproducible on tcp connector 
> through eclipse Paho client and it looks like it does not happen with 
> websocket config (javascript).
> Just in case there is linked bug on another JIRA:
> https://jira.spring.io/browse/INT-3828



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[1/2] activemq git commit: Removing inadvertantly checked in file

2015-09-21 Thread cshannon
Repository: activemq
Updated Branches:
  refs/heads/master cc9b9b084 -> 00d19e7b6


http://git-wip-us.apache.org/repos/asf/activemq/blob/00d19e7b/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java.orig
--
diff --git 
a/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java.orig
 
b/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java.orig
deleted file mode 100644
index e27279c..000
--- 
a/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java.orig
+++ /dev/null
@@ -1,3147 +0,0 @@
-/**
- * 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.broker;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.net.URI;
-import java.net.URISyntaxException;
-import java.net.UnknownHostException;
-import java.security.Provider;
-import java.security.Security;
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Locale;
-import java.util.Map;
-import java.util.Set;
-import java.util.concurrent.CopyOnWriteArrayList;
-import java.util.concurrent.CountDownLatch;
-import java.util.concurrent.LinkedBlockingQueue;
-import java.util.concurrent.RejectedExecutionException;
-import java.util.concurrent.RejectedExecutionHandler;
-import java.util.concurrent.SynchronousQueue;
-import java.util.concurrent.ThreadFactory;
-import java.util.concurrent.ThreadPoolExecutor;
-import java.util.concurrent.TimeUnit;
-import java.util.concurrent.atomic.AtomicBoolean;
-import java.util.concurrent.atomic.AtomicInteger;
-import java.util.concurrent.atomic.AtomicLong;
-
-import javax.annotation.PostConstruct;
-import javax.annotation.PreDestroy;
-import javax.management.MalformedObjectNameException;
-import javax.management.ObjectName;
-
-import org.apache.activemq.ActiveMQConnectionMetaData;
-import org.apache.activemq.ConfigurationException;
-import org.apache.activemq.Service;
-import org.apache.activemq.advisory.AdvisoryBroker;
-import org.apache.activemq.broker.cluster.ConnectionSplitBroker;
-import org.apache.activemq.broker.jmx.AnnotatedMBean;
-import org.apache.activemq.broker.jmx.BrokerMBeanSupport;
-import org.apache.activemq.broker.jmx.BrokerView;
-import org.apache.activemq.broker.jmx.ConnectorView;
-import org.apache.activemq.broker.jmx.ConnectorViewMBean;
-import org.apache.activemq.broker.jmx.HealthView;
-import org.apache.activemq.broker.jmx.HealthViewMBean;
-import org.apache.activemq.broker.jmx.JmsConnectorView;
-import org.apache.activemq.broker.jmx.JobSchedulerView;
-import org.apache.activemq.broker.jmx.JobSchedulerViewMBean;
-import org.apache.activemq.broker.jmx.Log4JConfigView;
-import org.apache.activemq.broker.jmx.ManagedRegionBroker;
-import org.apache.activemq.broker.jmx.ManagementContext;
-import org.apache.activemq.broker.jmx.NetworkConnectorView;
-import org.apache.activemq.broker.jmx.NetworkConnectorViewMBean;
-import org.apache.activemq.broker.jmx.ProxyConnectorView;
-import org.apache.activemq.broker.region.CompositeDestinationInterceptor;
-import org.apache.activemq.broker.region.Destination;
-import org.apache.activemq.broker.region.DestinationFactory;
-import org.apache.activemq.broker.region.DestinationFactoryImpl;
-import org.apache.activemq.broker.region.DestinationInterceptor;
-import org.apache.activemq.broker.region.RegionBroker;
-import org.apache.activemq.broker.region.policy.PolicyMap;
-import org.apache.activemq.broker.region.virtual.MirroredQueue;
-import org.apache.activemq.broker.region.virtual.VirtualDestination;
-import org.apache.activemq.broker.region.virtual.VirtualDestinationInterceptor;
-import org.apache.activemq.broker.region.virtual.VirtualTopic;
-import org.apache.activemq.broker.scheduler.JobSchedulerStore;
-import org.apache.activemq.broker.scheduler.SchedulerBroker;
-import org.apache.activemq.broker.scheduler.memory.InMemoryJobSchedulerStore;
-import org.apache.activemq.command.ActiveMQDestination;
-import 

[2/2] activemq git commit: Removing inadvertantly checked in file

2015-09-21 Thread cshannon
Removing inadvertantly checked in file


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

Branch: refs/heads/master
Commit: 00d19e7b66e1d6e35adb43336fb5ec5bad41093e
Parents: cc9b9b0
Author: Christopher L. Shannon (cshannon) 
Authored: Mon Sep 21 17:13:36 2015 +
Committer: Christopher L. Shannon (cshannon) 
Committed: Mon Sep 21 17:13:36 2015 +

--
 .../activemq/broker/BrokerService.java.orig | 3147 --
 1 file changed, 3147 deletions(-)
--




activemq git commit: https://issues.apache.org/jira/browse/AMQ-5968

2015-09-21 Thread cshannon
Repository: activemq
Updated Branches:
  refs/heads/master 00d19e7b6 -> 130455c92


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

Fixing a potential null pointer exception when attempting to use
scheduler support with replicated levelDB, which is currently not
supported.


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

Branch: refs/heads/master
Commit: 130455c925786c4bfe59240ff0789b9d026f
Parents: 00d19e7
Author: Christopher L. Shannon (cshannon) 
Authored: Mon Sep 21 17:37:02 2015 +
Committer: Christopher L. Shannon (cshannon) 
Committed: Mon Sep 21 17:37:02 2015 +

--
 .../org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/130455c9/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
--
diff --git 
a/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
 
b/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
index efd55f3..7b62a95 100644
--- 
a/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
+++ 
b/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
@@ -46,7 +46,7 @@ abstract class ProxyLevelDBStore extends 
LockableServiceSupport with BrokerServi
   }
 
   def createJobSchedulerStore():JobSchedulerStore = {
-return proxy_target.createJobSchedulerStore()
+throw new UnsupportedOperationException();
   }
 
   def setDirectory(dir: File) {



activemq git commit: https://issues.apache.org/jira/browse/AMQ-5968

2015-09-21 Thread cshannon
Repository: activemq
Updated Branches:
  refs/heads/activemq-5.12.x 70a49b0fa -> 5488d8a03


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

Fixing a potential null pointer exception when attempting to use
scheduler support with replicated levelDB, which is currently not
supported.

(cherry picked from commit 130455c925786c4bfe59240ff0789b9d026f)


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

Branch: refs/heads/activemq-5.12.x
Commit: 5488d8a030ca5e97ac4f4892f87ff96e5b4437d1
Parents: 70a49b0
Author: Christopher L. Shannon (cshannon) 
Authored: Mon Sep 21 17:37:02 2015 +
Committer: Christopher L. Shannon (cshannon) 
Committed: Mon Sep 21 17:38:44 2015 +

--
 .../org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/activemq/blob/5488d8a0/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
--
diff --git 
a/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
 
b/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
index efd55f3..7b62a95 100644
--- 
a/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
+++ 
b/activemq-leveldb-store/src/main/scala/org/apache/activemq/leveldb/replicated/ProxyLevelDBStore.scala
@@ -46,7 +46,7 @@ abstract class ProxyLevelDBStore extends 
LockableServiceSupport with BrokerServi
   }
 
   def createJobSchedulerStore():JobSchedulerStore = {
-return proxy_target.createJobSchedulerStore()
+throw new UnsupportedOperationException();
   }
 
   def setDirectory(dir: File) {



buildbot success in ASF Buildbot on activemq-site-production

2015-09-21 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/2002

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





Jenkins build is still unstable: ActiveMQ-Java8 #480

2015-09-21 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: ActiveMQ-Java8 » ActiveMQ :: HTTP Protocol Support #480

2015-09-21 Thread Apache Jenkins Server
See 




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

2015-09-21 Thread cshannon
https://issues.apache.org/jira/browse/AMQ-5922

This closes #121

Thanks to Seth Leger


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

Branch: refs/heads/master
Commit: c08efbe6c2e490b1c00593df8fdbf93b847b971d
Parents: 130455c 103efe1
Author: Christopher L. Shannon (cshannon) 
Authored: Mon Sep 21 19:57:07 2015 +
Committer: Christopher L. Shannon (cshannon) 
Committed: Mon Sep 21 19:57:07 2015 +

--
 activemq-osgi/pom.xml | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)
--




Jenkins build became unstable: ActiveMQ-Java8 » ActiveMQ :: RA #481

2015-09-21 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: ActiveMQ-Java8 » ActiveMQ :: HTTP Protocol Support #481

2015-09-21 Thread Apache Jenkins Server
See 




Jenkins build became unstable: ActiveMQ-Java8 » ActiveMQ :: LevelDB Store #481

2015-09-21 Thread Apache Jenkins Server
See 




Jenkins build became unstable: ActiveMQ-Java8 » ActiveMQ :: Unit Tests #481

2015-09-21 Thread Apache Jenkins Server
See