- if you query after historic process instance like the following example:
POST /history/process-instance
Request Body:
{ "startedAfter": "2014-02-11T14:00:00" }Jackson deserialize the given date (ie. "startedAfter") to the following date:
Tue Feb 11 15:00:00 CET 2014
This occurs in the REST Api and in cockpit.
this isn't a bug, see http://wiki.fasterxml.com/JacksonFAQDateHandling
each date string without an explicit time zone is converted to GMT, i.e.
2014-02-11T14:00:00 = Tue Feb 11 15:00:00 CET 2014
2014-05-11T14:00:00 = Wed May 11 16:00:00 CET 2014