Actions
Bug #6721
closedTimes are stored in incorrect time zone
Description
For some reason started_at and ended_at times are not stored correctly. If i start a task at:
Tue, 22 Jul 2014 10:39:26 -04:00 (EST) and then run:
ForemanTasks::Task.order(:started_at).last.started_at
It will display:
Tue, 22 Jul 2014 10:39:26 UTC +00:00
I believe the time is being stored in localtime without the timezone and then read back out as UTC. You can see this on the tasks page as well. For some reason the dynflow console shows the correct time, i'm not sure why.
Updated by Ivan Necas almost 11 years ago
- Assignee changed from Adam Ruzicka to Ivan Necas
Updated by Ivan Necas almost 11 years ago
The fix proposed in https://github.com/Dynflow/dynflow/pull/126, all seems to work nice with this in.
Actions