-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
chore(seer-activity): Remove unused flag #119081
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -399,8 +399,6 @@ def register_temporary_features(manager: FeatureManager) -> None: | |
| manager.add("organizations:workflow-engine-issue-alert-endpoints-put", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) | ||
| # Enable metric detector limits by plan type | ||
| manager.add("organizations:workflow-engine-metric-detector-limit", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) | ||
| # Enable seer activities to be evaluated in workflow engine | ||
| manager.add("organizations:workflow-engine-evaluate-seer-activities", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) | ||
| # Enable our logs product (known internally as ourlogs) in UI and backend | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The feature flag Suggested FixEnsure that the dependent pull request which removes all usages of the Prompt for AI AgentAlso affects:
Did we get this right? 👍 / 👎 to inform future reviews. |
||
| manager.add("organizations:ourlogs-enabled", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) | ||
| # Enable our logs product to be ingested via Relay. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Flag removal disables seer paths
Medium Severity
Removing registration for
organizations:workflow-engine-evaluate-seer-activitieswhile production code still gates seer-activity workflow handling, notifications, and the data-condition index onfeatures.hasfor that name makes those checks always evaluate false once the flag is unregistered. Tests that enable the flag viaFeatureorwith_featurealso fail because the test helper requires a registered feature.Reviewed by Cursor Bugbot for commit d2f7264. Configure here.