Skip to content

Commit

Permalink
V2xHub and carma cloud integration: TCM connection refused (#600)
Browse files Browse the repository at this point in the history
<!-- Thanks for the contribution, this is awesome. -->

# 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.
<!--- Describe your changes in detail -->

## Related Issue

<!--- This project only accepts pull requests related to open issues -->
<!--- If suggesting a new feature or change, please discuss it in an
issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps
to reproduce -->
<!--- Please link to the issue here: -->

## Motivation and Context
NA
<!--- Why is this change required? What problem does it solve? -->

## How Has This Been Tested?
Local integration test
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran
to -->
<!--- see how your change affects other areas of the code, etc. -->

## Types of changes

<!--- What types of changes does your code introduce? Put an `x` in all
the boxes that apply: -->

- [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:

<!--- Go over all the following points, and put an `x` in all the boxes
that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->

- [ ] 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.
  • Loading branch information
dan-du-car authored Apr 9, 2024
1 parent 9ac6eda commit 625800e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/v2i-hub/CARMACloudPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"key":"WebServiceIP",
"default":"127.0.0.1",
"default":"0.0.0.0",
"description":"Server IP address for V2X hub"
},
{
Expand All @@ -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",
Expand Down

0 comments on commit 625800e

Please sign in to comment.