diff options
| author | Alan Conway <aconway@apache.org> | 2014-01-07 20:33:52 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2014-01-07 20:33:52 +0000 |
| commit | 2f9414479195ccf5e4fb2fc6adc0b439cf78c38e (patch) | |
| tree | fa1f84ade410026329e49c0f4e6a56f5d85a911a /cpp | |
| parent | c38eb5578597685b88fc52966806560bb24645df (diff) | |
| download | qpid-python-2f9414479195ccf5e4fb2fc6adc0b439cf78c38e.tar.gz | |
NO-JIRA: Fix brokertest.py so it doesn't try to load two stores.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1556344 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/tests/brokertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/brokertest.py b/cpp/src/tests/brokertest.py index 28e7f6b182..3f99d8647b 100644 --- a/cpp/src/tests/brokertest.py +++ b/cpp/src/tests/brokertest.py @@ -253,7 +253,7 @@ class Broker(Popen): self.test = test self._port=port - if BrokerTest.store_lib: + if BrokerTest.store_lib and not test_store: args = args + ['--load-module', BrokerTest.store_lib] if BrokerTest.sql_store_lib: args = args + ['--load-module', BrokerTest.sql_store_lib] |
