Skip to content

Commit

Permalink
feat(performance): Set API statuses on last few performance endpoints (
Browse files Browse the repository at this point in the history
  • Loading branch information
shruthilayaj committed Aug 28, 2024
1 parent f6dade4 commit 620fce1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sentry/api/endpoints/organization_events_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
@region_silo_endpoint
class OrganizationEventsStatsEndpoint(OrganizationEventsV2EndpointBase):
publish_status = {
"GET": ApiPublishStatus.UNKNOWN,
"GET": ApiPublishStatus.EXPERIMENTAL,
}
sunba_methods = ["GET"]

Expand Down
2 changes: 1 addition & 1 deletion src/sentry/api/endpoints/organization_events_trends_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
@region_silo_endpoint
class OrganizationEventsNewTrendsStatsEndpoint(OrganizationEventsV2EndpointBase):
publish_status = {
"GET": ApiPublishStatus.UNKNOWN,
"GET": ApiPublishStatus.PRIVATE,
}
enforce_rate_limit = True
rate_limits = {
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/api/endpoints/organization_measurements_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@region_silo_endpoint
class OrganizationMeasurementsMeta(OrganizationEventsEndpointBase):
publish_status = {
"GET": ApiPublishStatus.UNKNOWN,
"GET": ApiPublishStatus.EXPERIMENTAL,
}

def get(self, request: Request, organization: Organization) -> Response:
Expand Down

0 comments on commit 620fce1

Please sign in to comment.