diff --git a/src/sentry/seer/explorer/tools.py b/src/sentry/seer/explorer/tools.py index 9f5873181ac5c8..985ab19d568438 100644 --- a/src/sentry/seer/explorer/tools.py +++ b/src/sentry/seer/explorer/tools.py @@ -1173,8 +1173,6 @@ def get_log_attributes_for_trace( ) if not message_substring: - if limit is not None: - items = items[:limit] # Re-apply in case the endpoint didn't respect it. return {"data": items} # Filter on message substring. @@ -1250,8 +1248,6 @@ def get_metric_attributes_for_trace( ) if not metric_name: - if limit is not None: - items = items[:limit] # Re-apply in case the endpoint didn't respect it. return {"data": items} # Filter on metric name (exact case-insensitive match).