summaryrefslogtreecommitdiff
path: root/java/broker/src/test/java/org/apache/qpid
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2012-01-28 16:23:04 +0000
committerKeith Wall <kwall@apache.org>2012-01-28 16:23:04 +0000
commit9bb75aae85d397bd9dd98c8230de3e576ce97572 (patch)
tree9bca2b6c015693d588a0e2809894e1f6ffcba60d /java/broker/src/test/java/org/apache/qpid
parentbe57a571ef2b008f95a6d01af8565381a47daa70 (diff)
downloadqpid-python-9bb75aae85d397bd9dd98c8230de3e576ce97572.tar.gz
QPID-3788: Remove remaining MINA configuration keys (and those from other retired impls) from the Java Broker's config.xml
* Remove remaining references to MINA transport configuration keys: enableDirectBuffers/enablePooledAllocator/filterchain from code and example config files. * Remove references to compressBufferOnQueue from config XMLs. The implementation that used it was removed back in 2007 by QPID-275. * Remove references to broker-side configuration key enableJMSXUserID. This broker feature was removed by QPID-943 (which replaced the functionality with an equivilent client-side option). The old Broker side key plays no part in the client-side function. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1237088 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker/src/test/java/org/apache/qpid')
-rw-r--r--java/broker/src/test/java/org/apache/qpid/server/configuration/ServerConfigurationTest.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/java/broker/src/test/java/org/apache/qpid/server/configuration/ServerConfigurationTest.java b/java/broker/src/test/java/org/apache/qpid/server/configuration/ServerConfigurationTest.java
index 77dd61c869..81de6be703 100644
--- a/java/broker/src/test/java/org/apache/qpid/server/configuration/ServerConfigurationTest.java
+++ b/java/broker/src/test/java/org/apache/qpid/server/configuration/ServerConfigurationTest.java
@@ -491,19 +491,6 @@ public class ServerConfigurationTest extends QpidTestCase
assertEquals(false, _serverConfig.getTcpNoDelay());
}
- public void testGetEnableExecutorPool() throws ConfigurationException
- {
- // Check default
- _serverConfig.initialise();
- assertEquals(false, _serverConfig.getEnableExecutorPool());
-
- // Check value we set
- _config.setProperty("advanced.filterchain[@enableExecutorPool]", true);
- _serverConfig = new ServerConfiguration(_config);
- _serverConfig.initialise();
- assertEquals(true, _serverConfig.getEnableExecutorPool());
- }
-
public void testGetEnableSSL() throws ConfigurationException
{
// Check default