Merge branch 'AMQ-6586' into activemq-5.14.x

This closes #225
This commit is contained in:
Christopher L. Shannon (cshannon) 2017-01-31 15:32:10 -05:00
commit cd82533f35
2 changed files with 3 additions and 3 deletions

View File

@ -191,9 +191,9 @@ public class QueuePurgeTest extends CombinationTestSupport {
private void testConcurrentPurgeAndSend(boolean prioritizedMessages) throws Exception {
applyBrokerSpoolingPolicy(false);
createProducerAndSendMessages(NUM_TO_SEND / 2);
QueueViewMBean proxy = getProxyToQueueViewMBean();
final QueueViewMBean proxy = getProxyToQueueViewMBean();
createConsumer();
long start = System.currentTimeMillis();
final long start = System.currentTimeMillis();
ExecutorService service = Executors.newFixedThreadPool(1);
try {
LOG.info("purging..");

View File

@ -105,7 +105,7 @@ public class TcpTransportCloseSocketTest {
factory.setBrokerURL(uri);
factory.setClientID("id");
TcpTransportServer server = (TcpTransportServer) brokerService.getTransportConnectorByName("tcp").getServer();
final TcpTransportServer server = (TcpTransportServer) brokerService.getTransportConnectorByName("tcp").getServer();
//Try and create 2 connections, the second should fail because of a duplicate clientId
int failed = 0;