Details
-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
1.2.3
-
None
Description
The CoreConstants class contains the following:
public static final String ISO8601_PATTERN = "yyyy-MM-dd HH:mm:ss,SSS";
According to https://www.w3.org/TR/NOTE-datetime a decimal fraction of a second must be delimited by a dot, not comma. So the rigth pattern would be:
yyyy-MM-dd HH:mm:ss.SSS