From 902fc7abbb42e062ee4a08e84521c3e505fe012f Mon Sep 17 00:00:00 2001 From: vidhyasree Date: Tue, 26 Jun 2018 11:55:24 -0400 Subject: Fix for invalid locking approach Issue-ID: APPC-1019 Change-Id: I738c4ad72c29f494488a3fe3657243927797e2b5 Signed-off-by: vidhyasree --- .../appc/requesthandler/impl/AbstractRequestHandlerImpl.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'appc-dispatcher/appc-request-handler') diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/impl/AbstractRequestHandlerImpl.java b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/impl/AbstractRequestHandlerImpl.java index 9d6c88883..aa6d203a5 100644 --- a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/impl/AbstractRequestHandlerImpl.java +++ b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/impl/AbstractRequestHandlerImpl.java @@ -74,7 +74,7 @@ import java.util.HashMap; import java.util.Map; import java.util.Properties; import java.util.UUID; - +import java.util.TimeZone; import static com.att.eelf.configuration.Configuration.MDC_INSTANCE_UUID; import static com.att.eelf.configuration.Configuration.MDC_KEY_REQUEST_ID; import static com.att.eelf.configuration.Configuration.MDC_SERVER_FQDN; @@ -226,11 +226,11 @@ public abstract class AbstractRequestHandlerImpl implements RequestHandler { } updateColumns.put(TransactionConstants.TRANSACTION_ATTRIBUTES.STATE, record.getRequestState()); updateColumns.put(TransactionConstants.TRANSACTION_ATTRIBUTES.RESULT_CODE, - String.valueOf(record.getResultCode())); + String.valueOf(record.getResultCode())); if (RequestStatus.valueOf(record.getRequestState()).isTerminal()) { - Date endTime = new Date(System.currentTimeMillis()); + Date endTime = new Date(); updateColumns.put(TransactionConstants.TRANSACTION_ATTRIBUTES.END_TIME, - dateToStringConverterMillis(endTime)); + dateToStringConverterMillis(endTime)); } try { transactionRecorder.update(record.getTransactionId(), updateColumns); @@ -461,6 +461,7 @@ public abstract class AbstractRequestHandlerImpl implements RequestHandler { public static String dateToStringConverterMillis(Date date) { SimpleDateFormat customDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); + customDate.setTimeZone(TimeZone.getTimeZone("UTC")); if (date != null) { return customDate.format(date); } -- cgit 1.2.3-korg