Skip to content

Commit b242dfd

Browse files
authored
fix(release_health) : bad granularity was causing limit validation error in MetricsLayer (#43729)
1 parent 93be0c7 commit b242dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/release_health/metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ def check_releases_have_health_data(
714714
select=select,
715715
start=start,
716716
end=end,
717-
granularity=Granularity(MINUTE),
717+
granularity=Granularity(LEGACY_SESSIONS_DEFAULT_ROLLUP),
718718
groupby=groupby,
719719
where=where_clause,
720720
include_series=False,

0 commit comments

Comments
 (0)