Skip to content

Commit 9b071ab

Browse files
committed
🔧 chore: make ACI dual write True by default
1 parent 6306803 commit 9b071ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/features/temporary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def register_temporary_features(manager: FeatureManager) -> None:
508508
# Enable processing activity updates in workflow engine
509509
manager.add("organizations:workflow-engine-process-activity", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
510510
# Enable dual writing for issue alert issues (see: alerts create issues)
511-
manager.add("organizations:workflow-engine-issue-alert-dual-write", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
511+
manager.add("organizations:workflow-engine-issue-alert-dual-write", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False, default=True)
512512
# Enable workflow processing for metric issues
513513
manager.add("organizations:workflow-engine-process-metric-issue-workflows", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
514514
# Enable workflow engine for issue alerts
@@ -522,7 +522,7 @@ def register_temporary_features(manager: FeatureManager) -> None:
522522
# Enable logs to debug metric alert dual processing
523523
manager.add("organizations:workflow-engine-metric-alert-dual-processing-logs", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
524524
# Enable dual writing for metric alert issues (see: alerts create issues)
525-
manager.add("organizations:workflow-engine-metric-alert-dual-write", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
525+
manager.add("organizations:workflow-engine-metric-alert-dual-write", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False, default=True)
526526
# Enable Processing for Metric Alerts in the workflow_engine
527527
manager.add("organizations:workflow-engine-metric-alert-processing", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
528528
# Enable Creation of Metric Alerts that use the `group_by` field in the workflow_engine

0 commit comments

Comments
 (0)