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 Feb 14, 2023. It is now read-only.
When i bind the service to the application when creating the application using ibmcloud dev create, the file search pattern in the generated mappings.json is something like this file://localdev-config.json:$.cloudant_url which does not work and in here i noticed a different format https://github.com/ibm-developer/ibm-cloud-env#mappingsjson-file-example . What is the correct format?
When i bind the service to the application when creating the application using
ibmcloud dev create
, the file search pattern in the generated mappings.json is something like thisfile://localdev-config.json:$.cloudant_url
which does not work and in here i noticed a different format https://github.com/ibm-developer/ibm-cloud-env#mappingsjson-file-example . What is the correct format?In order for this format to work
file://localdev-config.json:$.cloudant_url
, i had to make changes in this line https://github.com/ibm-developer/ibm-cloud-spring-bind/blob/master/src/main/java/com/ibm/cloud/spring/env/CloudServicesConfigMap.java#L269 to thisString path = token[0].substring(2);
The text was updated successfully, but these errors were encountered: