Skip to content

Commit

Permalink
Fised a UTC time issue and docker image names.
Browse files Browse the repository at this point in the history
  • Loading branch information
hmusavi committed Nov 30, 2018
1 parent 19c874e commit d253d98
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
16 changes: 8 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:

adm:
build: ./asn1_codec
image: jpo-ode_acm:latest
image: jpoode_acm:latest
environment:
DOCKER_HOST_IP: ${DOCKER_HOST_IP}
ACM_CONFIG_FILE: adm.properties
Expand All @@ -69,7 +69,7 @@ services:

aem:
build: ./asn1_codec
image: jpo-ode_acm:latest
image: jpoode_acm:latest
environment:
DOCKER_HOST_IP: ${DOCKER_HOST_IP}
ACM_CONFIG_FILE: aem.properties
Expand All @@ -82,7 +82,7 @@ services:
build:
context: ./jpo-cvdp
dockerfile: Dockerfile
image: jpo-ode_ppm:latest
image: jpoode_ppm:latest
environment:
DOCKER_HOST_IP: ${DOCKER_HOST_IP}
PPM_CONFIG_FILE: ppmBsm.properties
Expand All @@ -95,7 +95,7 @@ services:
build:
context: ./jpo-cvdp
dockerfile: Dockerfile
image: jpo-ode_ppm:latest
image: jpoode_ppm:latest
environment:
DOCKER_HOST_IP: ${DOCKER_HOST_IP}
PPM_CONFIG_FILE: ppmTim.properties
Expand All @@ -106,7 +106,7 @@ services:

cvpep_bsm_depositor:
build: ./jpo-s3-deposit
image: jpo-ode_s3dep:latest
image: jpoode_s3dep:latest
environment:
AWS_ACCESS_KEY_ID: ${CVPEP_BSM_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${CVPEP_BSM_SECRET_ACCESS_KEY}
Expand All @@ -119,7 +119,7 @@ services:

rde_bsm_depositor:
build: ./jpo-s3-deposit
image: jpo-ode_s3dep:latest
image: jpoode_s3dep:latest
environment:
AWS_ACCESS_KEY_ID: ${RDE_BSM_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${RDE_BSM_SECRET_ACCESS_KEY}
Expand All @@ -132,7 +132,7 @@ services:

cvpep_tim_depositor:
build: ./jpo-s3-deposit
image: jpo-ode_s3dep:latest
image: jpoode_s3dep:latest
environment:
AWS_ACCESS_KEY_ID: ${CVPEP_TIM_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${CVPEP_TIM_SECRET_ACCESS_KEY}
Expand All @@ -145,7 +145,7 @@ services:

rde_tim_depositor:
build: ./jpo-s3-deposit
image: jpo-ode_s3dep:latest
image: jpoode_s3dep:latest
environment:
AWS_ACCESS_KEY_ID: ${RDE_TIM_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${RDE_TIM_SECRET_ACCESS_KEY}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import us.dot.its.jpo.ode.plugin.j2735.builders.LatitudeBuilder;
import us.dot.its.jpo.ode.plugin.j2735.builders.LongitudeBuilder;
import us.dot.its.jpo.ode.plugin.j2735.builders.SpeedOrVelocityBuilder;
import us.dot.its.jpo.ode.util.DateTimeUtils;

public class OdeLogMetadataCreatorHelper {

Expand All @@ -30,7 +31,7 @@ public static void updateLogMetadata(OdeLogMetadata metadata, LogFileParser logF
if (logFileParser != null) {
metadata.setLogFileName(logFileParser.getFilename());
metadata.setRecordType(logFileParser.getRecordType());
metadata.setRecordGeneratedAt(logFileParser.getTimeParser().getGeneratedAt().toString());
metadata.setRecordGeneratedAt(DateTimeUtils.isoDateTime(logFileParser.getTimeParser().getGeneratedAt()));

if (logFileParser.getSecResCodeParser() != null) {
metadata.setSecurityResultCode(logFileParser.getSecResCodeParser().getSecurityResultCode());
Expand Down
2 changes: 1 addition & 1 deletion jpo-security-svcs
Submodule jpo-security-svcs updated 1 files
+1 −0 .gitignore

0 comments on commit d253d98

Please sign in to comment.