You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
A simple configuration such as: [ { "service.pid" : "xxx" "prop": "@{resource;configuration/file.txt}" } ]
Problem
lead to a Json parse exception on Windows because the macro is replaced by a path without escape characters: C:\User\cde... \configuration\file.txt (expected path: C:\User\cde\... \configuration\file.txt).
note
Also there is a difference between the documentation of the resource macro and what is currently being done:
documentation -> @{resource:} (colon)
code -> @{resource;} (semi-colon)
The text was updated successfully, but these errors were encountered:
Input
A simple configuration such as:
[ { "service.pid" : "xxx" "prop": "@{resource;configuration/file.txt}" } ]
Problem
lead to a Json parse exception on Windows because the macro is replaced by a path without escape characters: C:\User\cde... \configuration\file.txt (expected path: C:\User\cde\... \configuration\file.txt).
note
Also there is a difference between the documentation of the resource macro and what is currently being done:
The text was updated successfully, but these errors were encountered: