From f22ec50f0d9be9b82b6bfd071cebf18c39e09162 Mon Sep 17 00:00:00 2001 From: Martin Ritchie Date: Thu, 12 Mar 2009 09:22:52 +0000 Subject: SyncWaitDelay*Test is failing spuradically with a management port clash. Simplest solution here is to disable the management interface for these tests. The more complex change to ensure the MC is shut down correctly and port freed during test startup will not be a problem for production. It only occurs here as we start a broker then stop and start a new one immediately. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@752810 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'java') diff --git a/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java b/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java index e0da406059..59ee4ad511 100644 --- a/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java +++ b/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java @@ -70,6 +70,8 @@ public class SyncWaitDelayTest extends QpidTestCase XMLConfiguration configuration = new XMLConfiguration(_configFile); configuration.setProperty("virtualhosts.virtualhost." + VIRTUALHOST+".store.class", "org.apache.qpid.server.store.SlowMessageStore"); configuration.setProperty("virtualhosts.virtualhost." + VIRTUALHOST+".store.delays.commitTran.post", POST_COMMIT_DELAY); + configuration.setProperty("management.enabled", "false"); + File tmpFile = File.createTempFile("configFile", "test"); tmpFile.deleteOnExit(); -- cgit v1.2.1