| Summary: | Bugs with modified dates from the future | ||
|---|---|---|---|
| Product: | Services | Reporter: | Tobias Kortkamp <tobik> |
| Component: | Bug Tracker | Assignee: | Oleksandr Tymoshenko <gonzo> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | CC: | bugmeister, gonzo |
| Priority: | --- | ||
| Version: | unspecified | ||
| Hardware: | Any | ||
| OS: | Any | ||
| See Also: |
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3497 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3481 |
||
|
Description
Tobias Kortkamp
2017-12-03 10:46:03 UTC
Fixed. Probably some glitch in GNATS to bugzilla conversion Assign to committer that resolved. @gonzo, could you detail (for our future selves and others) how this was resolved? (In reply to Kubilay Kocak from comment #2) Sure, should have done in the first place, my bad. I had to manually fix delta_ts value in database by running something like this: update bugs set delta_ts='1997-05-03 23:25:30' where bug_id=3481; I got the date from the last entry in bugs_activity table: select * from bugs_activity where bug_id=3481 order by bug_when desc limit 1; If last activity in bug was comment you can get this information from longdescs table: select * from longdescs where bug_id=3481 order by bug_when desc limit 1; |