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
For example, a report deleted at December 1st, 2021 is visible when time traveling to December 2nd, 2021. When time traveling to the current date, the report is not shown.
The problem is that in latest_reports, the distinct report_uuids are retrieved while ignoring deleted reports. This means that if a report is deleted before the max_iso_timestamp, the previous undeleted report is retrieved.
For example, a report deleted at December 1st, 2021 is visible when time traveling to December 2nd, 2021. When time traveling to the current date, the report is not shown.
The problem is that in
latest_reports
, the distinct report_uuids are retrieved while ignoring deleted reports. This means that if a report is deleted before the max_iso_timestamp, the previous undeleted report is retrieved.A simple solution is to retrieve all report_uuids, regardless of deletion status and then filter the deleted reports in the for loop:
The text was updated successfully, but these errors were encountered: