Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 056C9200C0D for ; Tue, 31 Jan 2017 15:15:54 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 03FBB160B52; Tue, 31 Jan 2017 14:15:54 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4DC5F160B46 for ; Tue, 31 Jan 2017 15:15:53 +0100 (CET) Received: (qmail 5280 invoked by uid 500); 31 Jan 2017 14:15:52 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 5271 invoked by uid 99); 31 Jan 2017 14:15:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jan 2017 14:15:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4FDFCDFC47; Tue, 31 Jan 2017 14:15:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: activemq-artemis git commit: NO-JIRA: Fixing hanging testsuite Date: Tue, 31 Jan 2017 14:15:52 +0000 (UTC) archived-at: Tue, 31 Jan 2017 14:15:54 -0000 Repository: activemq-artemis Updated Branches: refs/heads/master b4b8c583b -> 35415510d NO-JIRA: Fixing hanging testsuite Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/35415510 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/35415510 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/35415510 Branch: refs/heads/master Commit: 35415510dff4b9aca8ce683eab3d53ccba590c93 Parents: b4b8c58 Author: Clebert Suconic Authored: Tue Jan 31 09:11:50 2017 -0500 Committer: Clebert Suconic Committed: Tue Jan 31 09:11:50 2017 -0500 ---------------------------------------------------------------------- .../activemq/artemis/tests/integration/amqp/ProtonTestBase.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/35415510/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/ProtonTestBase.java ---------------------------------------------------------------------- diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/ProtonTestBase.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/ProtonTestBase.java index a57e2ea..7057b8b 100644 --- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/ProtonTestBase.java +++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/ProtonTestBase.java @@ -58,6 +58,9 @@ public class ProtonTestBase extends ActiveMQTestBase { amqpServer.getConfiguration().setAcceptorConfigurations(Collections.singleton(transportConfiguration)); amqpServer.getConfiguration().setName(brokerName); + amqpServer.getConfiguration().setJournalDirectory(amqpServer.getConfiguration().getJournalDirectory() + port); + amqpServer.getConfiguration().setBindingsDirectory(amqpServer.getConfiguration().getBindingsDirectory() + port); + amqpServer.getConfiguration().setPagingDirectory(amqpServer.getConfiguration().getPagingDirectory() + port); // Default Page AddressSettings addressSettings = new AddressSettings();