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

Bug: Issue only search doesn't correctly filter out disabled issue types #60697

Closed
Tracked by #60114
wedamija opened this issue Nov 28, 2023 · 0 comments · Fixed by #76984
Closed
Tracked by #60114

Bug: Issue only search doesn't correctly filter out disabled issue types #60697

wedamija opened this issue Nov 28, 2023 · 0 comments · Fixed by #76984

Comments

@wedamija
Copy link
Member

When querying in issue search we have a path where we only search in postgres:

group_queryset = (
group_queryset.using_replica()
.filter(last_seen__gte=start, last_seen__lte=end)
.order_by("-last_seen")
)

This path isn't correctly filtering out issue types that haven't been released. We need to make sure this filtering occurs here.

@ryan953 ryan953 changed the title Issue only search doesn't correctly filter out disabled issue types Bug: Issue only search doesn't correctly filter out disabled issue types Jan 12, 2024
@aliu39 aliu39 closed this as completed in f95b37b Sep 9, 2024
c298lee pushed a commit that referenced this issue Sep 10, 2024
Follow up to #59505 to filter
feedbacks from the default search when querying Postgres. As before,
filtering on issue.category:feedback or a negation (ex
!issue.category:error) will still return feedback issues.

Fixes #60697
Fixes getsentry/team-replay#470
@github-actions github-actions bot locked and limited conversation to collaborators Sep 25, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant