Skip to content

Commit

Permalink
Merge pull request #357 from usdot-fhwa-OPS/release_7.2
Browse files Browse the repository at this point in the history
Release 7.2.1
  • Loading branch information
snallamothu authored Apr 15, 2022
2 parents 53e91f4 + 175857f commit 7f083d5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions configuration/amd64/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- ./mysql/port_drayage.sql:/docker-entrypoint-initdb.d/port_drayage.sql

php:
image: usdotfhwaops/php:latest
image: usdotfhwaops/php:7.2.1
container_name: php
network_mode: host
depends_on:
Expand All @@ -29,7 +29,7 @@ services:
tty: true

v2xhub:
image: usdotfhwaops/v2xhubamd:latest
image: usdotfhwaops/v2xhubamd:7.2.1
container_name: v2xhub
network_mode: host
restart: always
Expand All @@ -43,7 +43,7 @@ services:
- ./logs:/var/log/tmx
- ./MAP:/var/www/plugins/MAP
port_drayage_webservice:
image: usdotfhwaops/port-drayage-webservice:latest
image: usdotfhwaops/port-drayage-webservice:7.2.1
container_name: port_drayage_webservice
network_mode: host
secrets:
Expand Down
6 changes: 3 additions & 3 deletions configuration/arm64/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- ./mysql/port_drayage.sql:/docker-entrypoint-initdb.d/port_drayage.sql

php:
image: usdotfhwaops/php_arm:latest
image: usdotfhwaops/php_arm:7.2.1
container_name: php
network_mode: host
depends_on:
Expand All @@ -29,7 +29,7 @@ services:
tty: true

v2xhub:
image: usdotfhwaops/v2xhubarm:latest
image: usdotfhwaops/v2xhubarm:7.2.1
container_name: v2xhub
network_mode: host
restart: always
Expand All @@ -43,7 +43,7 @@ services:
- ./logs:/var/log/tmx
- ./MAP:/var/www/plugins/MAP
port_drayage_webservice:
image: usdotfhwaops/port-drayage-webservice_arm:latest
image: usdotfhwaops/port-drayage-webservice_arm:7.2.1
container_name: port_drayage_webservice
network_mode: host
secrets:
Expand Down
5 changes: 5 additions & 0 deletions docs/Release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
V2X-Hub Release Notes
----------------------------
Version 7.2.1, released April 15th, 2022
--------------------------------------------------------
V2X Hub release 7.2.1 includes added functionality for the CARMACloud Plugin to support a hot fix for positive acknowledgment:
- Issue 352: Fix reason field data to display complete reason information.

Version 7.2, released April 12th, 2022
--------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/v2i-hub/CARMACloudPlugin/src/CARMACloudPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ void CARMACloudPlugin::ConvertString2Pair(std::pair<string,string> &str_pair, co
key = substring;
count += 1;
}else{
value = substring;
value += substring + " ";
}
}
str_pair = std::make_pair(key, value);
Expand Down

0 comments on commit 7f083d5

Please sign in to comment.