From 8b33b328b61f40728ed6ba96edc6df7561987681 Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Fri, 9 Jun 2023 13:29:00 +0200 Subject: [PATCH] SSDM-13524: Change timestamp formatting to include timezone --- .../cisd/openbis/generic/shared/dto/EntityPropertyPE.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-application-server/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/EntityPropertyPE.java b/server-application-server/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/EntityPropertyPE.java index 26927ee8682..71b9abbcadf 100644 --- a/server-application-server/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/EntityPropertyPE.java +++ b/server-application-server/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/EntityPropertyPE.java @@ -357,7 +357,7 @@ public abstract class EntityPropertyPE extends HibernateAbstractRegistrationHold private String convertTimestampArrayToString(Date[] array) { if (array == null || array.length == 0) return ""; - DateFormat dateFormat = new SimpleDateFormat(BasicConstant.DATE_HOURS_MINUTES_SECONDS_PATTERN); + DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss XX"); return Stream.of(array) .map(dateFormat::format) .reduce((x, y) -> x + ", " + y) -- GitLab