Skip to content

Commit 57ad04a

Browse files
roggenkemperclaude
andcommitted
ref: Move celery schedule and feature flag changes to separate PRs
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0b4a922 commit 57ad04a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/sentry/conf/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1216,7 +1216,7 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
12161216
},
12171217
"llm-issue-detection": {
12181218
"task": "issues:sentry.tasks.llm_issue_detection.run_llm_issue_detection",
1219-
"schedule": crontab("*/15", "*", "*", "*", "*"),
1219+
"schedule": crontab("0", "*", "*", "*", "*"),
12201220
},
12211221
"preprod-detect-expired-artifacts": {
12221222
"task": "preprod:sentry.preprod.tasks.detect_expired_preprod_artifacts",

src/sentry/features/temporary.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,6 @@ def register_temporary_features(manager: FeatureManager) -> None:
128128
manager.add("organizations:expose-migrated-discover-queries", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
129129
# Enable GenAI features such as Autofix and Issue Summary
130130
manager.add("organizations:gen-ai-features", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
131-
# Enable AI-based issue detection for an organization (budget-paced scheduling)
132-
manager.add("organizations:ai-issue-detection", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
133131
# Enable the 'translate' functionality for GenAI on the explore > traces page
134132
manager.add("organizations:gen-ai-search-agent-translate", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
135133
# Enable AI search bar on the explore > metrics tab

0 commit comments

Comments
 (0)