diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-05-03 09:47:26 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-05-03 09:47:26 +0000 |
| commit | b2de7c3c4a9d7c05a70d33947b5cdf8c98ef1123 (patch) | |
| tree | ffefd8ad87fccafd4bdd8f625ed492520a9b37d8 /qpid/java/systests/src | |
| parent | c6c6b897f76f3d5711798260d24a3a0df7032e80 (diff) | |
| download | qpid-python-b2de7c3c4a9d7c05a70d33947b5cdf8c98ef1123.tar.gz | |
QPID-4809: add support for setting configuration properties through the command line and BrokerOptions that can be used by the broker configuration store to resolve variables in the config, use this to supply the default port number values.
Povides chance to alter the ports when first starting the broker and using the initial config file to populate the config store.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1478696 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/utils/TestBrokerConfiguration.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/TestBrokerConfiguration.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/TestBrokerConfiguration.java index a91c9bb752..9cb1e6dfcb 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/TestBrokerConfiguration.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/TestBrokerConfiguration.java @@ -70,7 +70,7 @@ public class TestBrokerConfiguration public TestBrokerConfiguration(String storeType, String intialStoreLocation) { - _store = new MemoryConfigurationEntryStore(intialStoreLocation, null); + _store = new MemoryConfigurationEntryStore(intialStoreLocation, null, Collections.<String,String>emptyMap()); } public boolean setBrokerAttribute(String name, Object value) |
