You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is necessary to store dates like oxCreationTimestamp and updatedAt in ISO format with time zone UTC
Class org.gluu.persist.couchbase.impl.CouchbaseEntryManager uses Java SimpleDateFormat with format yyyy-MM-dd'T'HH:mm:ss.SSS (see encodeTime method) and this is correct as long as server timezone is UTC. When this is not the case, the date will be stored as a local date which is shifted.
In SCIM we use oxCreationTimestamp and updatedAt to build query filters and it is assumed that datetimes have no offset, ie. expressed in UTC
The text was updated successfully, but these errors were encountered:
It is necessary to store dates like
oxCreationTimestamp
andupdatedAt
in ISO format with time zone UTCClass
org.gluu.persist.couchbase.impl.CouchbaseEntryManager
uses Java SimpleDateFormat with formatyyyy-MM-dd'T'HH:mm:ss.SSS
(seeencodeTime
method) and this is correct as long as server timezone is UTC. When this is not the case, the date will be stored as a local date which is shifted.In SCIM we use
oxCreationTimestamp
andupdatedAt
to build query filters and it is assumed that datetimes have no offset, ie. expressed in UTCThe text was updated successfully, but these errors were encountered: