Skip to content

Commit 38258c3

Browse files
author
Kyle Mumma
authored
chore: enable trace pagination support by default (#7558)
this feature flag has been enabled in prod for a very long time at this point. (note this doesnt mean pagination is always applied, it just means pagination is supported if the user explicitly passes a limit)
1 parent 33a3ad7 commit 38258c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

snuba/settings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ class RedisClusters(TypedDict):
456456
SNQL_DISABLED_DATASETS: set[str] = set([])
457457

458458
ENDPOINT_GET_TRACE_PAGINATION_MAX_ITEMS: int = 0 # 0 means no limit
459-
ENABLE_TRACE_PAGINATION_DEFAULT = 0
459+
ENABLE_TRACE_PAGINATION_DEFAULT = 1
460460

461461

462462
def _load_settings(obj: MutableMapping[str, Any] = locals()) -> None:

0 commit comments

Comments
 (0)