diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2022-07-01 12:29:26 +0100 |
---|---|---|
committer | Ramesh Murugan Iyer <ramesh.murugan.iyer@est.tech> | 2022-07-01 11:35:35 +0000 |
commit | 7ee73475e3b0dc076b31c9ec58d78806a62848f6 (patch) | |
tree | 61690bffbd6fa3a325185d3375ddb20ae3080306 /models-sim | |
parent | 8c8eb415ca57830d462cefbe8d659b3b98b6de7c (diff) |
Fix CSIT build failure
Policy models simulator is not using the properties file from /etc/mounted/ directory that is provided
from CSIT. SSL has been disabled in the default properties file which causes communication failure with other
components.
Issue-ID: POLICY-4270
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Change-Id: I37b158d37898eec7d0a07be76343469ebd4289f6
Diffstat (limited to 'models-sim')
-rw-r--r-- | models-sim/packages/models-simulator-docker/src/main/docker/simulators.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models-sim/packages/models-simulator-docker/src/main/docker/simulators.sh b/models-sim/packages/models-simulator-docker/src/main/docker/simulators.sh index 3d382a876..065b663f8 100644 --- a/models-sim/packages/models-simulator-docker/src/main/docker/simulators.sh +++ b/models-sim/packages/models-simulator-docker/src/main/docker/simulators.sh @@ -35,7 +35,7 @@ else fi if [ -z "$CONFIG_FILE" ]; then - CONFIG_FILE="${POLICY_HOME}/etc/simParameters.json" + CONFIG_FILE="${POLICY_HOME}/etc/mounted/simParameters.json" fi echo "Policy simulator config file: $CONFIG_FILE" |