You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeError: object of type 'NoneType' has no len()
(11 additional frame(s) were not displayed)
...
File "sentry/replays/endpoints/organization_replay_count.py", line 95, in get
replay_counts = get_replay_counts(
File "sentry/replays/usecases/replay_counts.py", line 37, in get_replay_counts
replay_ids_mapping = _get_replay_id_mappings(query, snuba_params, data_source)
File "sentry/replays/usecases/replay_counts.py", line 72, in _get_replay_id_mappings
select_column, column_value = _get_select_column(query)
File "sentry/replays/usecases/replay_counts.py", line 162, in _get_select_column
parsed_query = parse_search_query(query)
File "sentry/api/event_search.py", line 1326, in parse_search_query
tree = event_search_grammar.parse(query)
The text was updated successfully, but these errors were encountered:
now I see the description: Return a count of replays for the given issue or transaction ID.
consider changing the page's title to something like Retrieve Replays Count for Issue or Transaction
The endpoint requires the
query
parameter, otherwise it calls several functions deep and fails on callinglen(query)
.Solution brainstorm: Validate
query
exists at the API entrypoint, otherwise return 400 indicating missing paramSentry Issue: SENTRY-2Z7Z
The text was updated successfully, but these errors were encountered: