[AMQ-6586] Compilation of activemq-unit-test fails

This commit is contained in:
Krzysztof Sobkowiak 2017-01-31 20:36:13 +01:00
parent 776418bae6
commit 659d1f6ba5
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;