From 8c494642fd88faf872b56b34c9d52ab44d89c10b Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 22:41:21 +0000 Subject: [PATCH] fix(query_builder): Remove noisy "Tag value was not a string" diagnostic --- src/sentry/search/events/builder/base.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/sentry/search/events/builder/base.py b/src/sentry/search/events/builder/base.py index aa116405ed6f..d0b65a85d435 100644 --- a/src/sentry/search/events/builder/base.py +++ b/src/sentry/search/events/builder/base.py @@ -1325,11 +1325,6 @@ def default_filter_converter( if is_tag or is_attr: subscriptable = lhs.subscriptable if operator not in ["IN", "NOT IN"] and not isinstance(value, str): - sentry_sdk.set_tag("query.lhs", lhs) - sentry_sdk.set_attribute("query.lhs", lhs) - sentry_sdk.set_tag("query.rhs", value) - sentry_sdk.set_attribute("query.rhs", value) - sentry_sdk.capture_message("Tag value was not a string", level="error") value = str(value) lhs = Function("ifNull", [lhs, ""]) else: