Description:
Steps to re-produce
- Execute the ciphertool.bat -Dconfigure in the windows environment
- Deployment path for the deployment.toml file getting null from the following code segment.
public static String getDeploymentFilePath() {
String configFilePath = System.getProperty(Constants.DEPLOYMENT_CONFIG_FILE_PATH);
if (StringUtils.isEmpty(configFilePath)) {
configFilePath = Paths.get(System.getProperty(Constants.CARBON_CONFIG_DIR_PATH),
Constants.DEPLOYMENT_TOML_FILE).toString();
}
return configFilePath;
}
The system property is getting null and executing the default encryption flow.
Description:
Steps to re-produce
The system property is getting null and executing the default encryption flow.