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 | d15fe159dfee37f209b66aa896e4b901e901b241 (patch) | |
tree | f2382549bcaaafda46dac235935c4cf02ff20d42 /java/broker-core | |
parent | b3a2f8a19a2f6aa8684b81cb53f4525d1111f1be (diff) | |
download | qpid-python-d15fe159dfee37f209b66aa896e4b901e901b241.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/qpid@1613056 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker-core')
-rw-r--r-- | java/broker-core/src/main/resources/initial-config.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/broker-core/src/main/resources/initial-config.json b/java/broker-core/src/main/resources/initial-config.json index 5922ba0319..74aedd14af 100644 --- a/java/broker-core/src/main/resources/initial-config.json +++ b/java/broker-core/src/main/resources/initial-config.json @@ -26,11 +26,11 @@ "authenticationproviders" : [ { "name" : "passwordFile", "type" : "PlainPasswordFile", - "path" : "${qpid.home_dir}/etc/passwd", + "path" : "${qpid.home_dir}${file.separator}etc${file.separator}passwd", "preferencesproviders" : [{ "name": "fileSystemPreferences", "type": "FileSystemPreferences", - "path" : "${qpid.work_dir}/user.preferences.json" + "path" : "${qpid.work_dir}${file.separator}user.preferences.json" }] } ], "ports" : [ { @@ -55,9 +55,9 @@ "virtualhostnodes" : [ { "name" : "default", "type" : "JSON", - "storePath" : "${qpid.work_dir}/default/config", + "storePath" : "${qpid.work_dir}${file.separator}default${file.separator}config", "context" : { - "virtualhostBlueprint" : "{ \"type\" : \"DERBY\", \"storePath\" : \"${json:qpid.work_dir}/default/messages\" }" + "virtualhostBlueprint" : "{ \"type\" : \"DERBY\", \"storePath\" : \"${json:qpid.work_dir}${json:file.separator}default${json:file.separator}messages\" }" } } ], "plugins" : [ { |