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
After a certain class has been removed from the backend (for example: after a mapcss update that removed the corresponding rule), the previously detected issues remain on the frontend unless manually detected and removed.
Ideally there should be a warning and/or automatic cleaning of such "ghost classes".
The text was updated successfully, but these errors were encountered:
I see we have a "timestamp" column on table "class" on frontend. Could it be used to remove old classes?
Right. But it solves only one part of the issue. The timestamp is update each time the class get an update.
But we have sources/country with removed classes, but not for all countries.
Nevertheless, it is interesting to see we have so much old classes!
select item, array_agg(DISTINCT class) as classes, max(title->>'en') as title, max(timestamp) astimestampfrom class wheretimestamp< now() - interval '2 months'group by item;
From osm-fr/osmose-backend#1732
After a certain class has been removed from the backend (for example: after a mapcss update that removed the corresponding rule), the previously detected issues remain on the frontend unless manually detected and removed.
Ideally there should be a warning and/or automatic cleaning of such "ghost classes".
The text was updated successfully, but these errors were encountered: