Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSIDB-3579: Handle models without manager #860

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions osidb/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ def stale_alert_cleanup():
for content_type in content_types:
model_class = content_type.model_class()

if not model_class:
logger.error(f"Model class not found for content type {content_type}")
continue

subquery = Subquery(
model_class.objects.filter(
pk=Cast(OuterRef("object_id"), output_field=model_class._meta.pk)
Expand Down
Loading