diff options
| author | Keith Wall <kwall@apache.org> | 2014-07-24 10:02:09 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2014-07-24 10:02:09 +0000 |
| commit | 38f6dea5a16eda38a50489d500de234b34916df3 (patch) | |
| tree | 0fd27d7697e51138032ffa657c1b0da1ee1124b3 /qpid/java/systests/etc/config-systests.json | |
| parent | 9df7c3257a81f6c124089cca3be2ceeee20ae1d2 (diff) | |
| download | qpid-python-38f6dea5a16eda38a50489d500de234b34916df3.tar.gz | |
QPID-5918: [Java Broker] Use the interpolation of file.separator to build paths within Broker's initial-config
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1613056 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/etc/config-systests.json')
| -rw-r--r-- | qpid/java/systests/etc/config-systests.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/java/systests/etc/config-systests.json b/qpid/java/systests/etc/config-systests.json index 27124de1fb..4375f258e8 100644 --- a/qpid/java/systests/etc/config-systests.json +++ b/qpid/java/systests/etc/config-systests.json @@ -26,16 +26,16 @@ "authenticationproviders" : [ { "name" : "plain", "type" : "PlainPasswordFile", - "path" : "${QPID_HOME}/etc/passwd" + "path" : "${QPID_HOME}${file.separator}etc${file.separator}passwd" } ], "keystores" : [ { "name" : "systestsKeyStore", - "path" : "${QPID_HOME}/../test-profiles/test_resources/ssl/java_broker_keystore.jks", + "path" : "${QPID_HOME}${file.separator}..${file.separator}test-profiles${file.separator}test_resources${file.separator}ssl${file.separator}java_broker_keystore.jks", "password" : "password" } ], "truststores" : [ { "name" : "systestsTrustStore", - "path" : "${QPID_HOME}/../test-profiles/test_resources/ssl/java_broker_truststore.jks", + "path" : "${QPID_HOME}${file.separator}..${file.separator}test-profiles${file.separator}test_resources${file.separator}ssl${file.separator}java_broker_truststore.jks", "password" : "password" } ], "ports" : [ { @@ -60,7 +60,7 @@ "virtualhostnodes" : [ { "name" : "test", "type" : "${virtualhostnode.type}", - "storePath" : "${QPID_WORK}/${test.port}/test/config", + "storePath" : "${QPID_WORK}${file.separator}${test.port}${file.separator}test${file.separator}config", "context" : { "virtualhostBlueprint" : "${virtualhostnode.context.blueprint}" } |
