We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b3f11 commit 94b82fbCopy full SHA for 94b82fb
src/sentry/search/events/filter.py
@@ -429,7 +429,8 @@ def _semver_build_filter_converter(
429
organization_id: int = params["organization_id"]
430
project_ids = params.get("project_id")
431
raw_build = search_filter.value.raw_value
432
- assert isinstance(raw_build, str)
+ if not isinstance(raw_build, str):
433
+ raise InvalidSearchQuery("Invalid value for release.build condition.")
434
build: str = raw_build
435
436
operator, negated = handle_operator_negation(search_filter.operator)
0 commit comments