From 625800ebaa77466a5e2eb7a584b57e7f9bce263e Mon Sep 17 00:00:00 2001 From: dan-du-car <62157949+dan-du-car@users.noreply.github.com> Date: Tue, 9 Apr 2024 14:02:50 -0400 Subject: [PATCH] V2xHub and carma cloud integration: TCM connection refused (#600) # PR Details ## Description Replace the loopback ip address with the 0.0.0.0 to allow the http server accessible by other containers within the simulation docker networks. ## Related Issue ## Motivation and Context NA ## How Has This Been Tested? Local integration test ## Types of changes - [x] Defect fix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that cause existing functionality to change) ## Checklist: - [ ] I have added any new packages to the sonar-scanner.properties file - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [x] I have read the **CONTRIBUTING** document. [V2XHUB Contributing Guide](https://github.com/usdot-fhwa-OPS/V2X-Hub/blob/develop/Contributing.md) - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. --- src/v2i-hub/CARMACloudPlugin/manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/v2i-hub/CARMACloudPlugin/manifest.json b/src/v2i-hub/CARMACloudPlugin/manifest.json index 56d7ae9df..2a36095c8 100644 --- a/src/v2i-hub/CARMACloudPlugin/manifest.json +++ b/src/v2i-hub/CARMACloudPlugin/manifest.json @@ -25,7 +25,7 @@ }, { "key":"WebServiceIP", - "default":"127.0.0.1", + "default":"0.0.0.0", "description":"Server IP address for V2X hub" }, { @@ -36,12 +36,12 @@ { "key":"CARMACloudIP", "default":"http://127.0.0.1", - "description":"Server IP address for V2X hub" + "description":"Server IP address of carma-cloud" }, { "key":"CARMACloudPort", "default":"33333", - "description":"Server Port for V2X hub to receive TCM messages" + "description":"Server Port for V2X hub to send TCR messages to carma-cloud" }, { "key":"fetchTime",