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
{{ message }}
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
I didn't catch this on any other endpoint, but saw this false positive for indicator list:
Because of the way historic date range is called in params init for appropriate indicators, the requests should in total be made as many times as there are related indicators (tho not ideal).
In the
/city/
list view, we currently have a N+1 problem due to using the MapCell object as part of the serialization of City:The official solution for this appears to be to include the potentially needed related fields as part of the queryset for the parent view, so for CityViewSet we would change it to become
We should check if this problem exists for other views or API end points.
The text was updated successfully, but these errors were encountered: