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
Ran into an issue where if I used a custom manager ClusterableModels will sometimes throw an error when using the custom manager. It appears the the get_queryset function in fields.py specifically line 337 is defaulting to using objects instead of _default_manager. The issue can be worked around by assigning an objects manager, but _default_manager should be used instead.
The text was updated successfully, but these errors were encountered:
Ran into an issue where if I used a custom manager ClusterableModels will sometimes throw an error when using the custom manager. It appears the the get_queryset function in fields.py specifically line 337 is defaulting to using objects instead of _default_manager. The issue can be worked around by assigning an objects manager, but _default_manager should be used instead.
The text was updated successfully, but these errors were encountered: