@@ -527,7 +527,7 @@ def register_temporary_features(manager: FeatureManager) -> None:
527527 # Enable dual writing for issue alert issues (see: alerts create issues)
528528 manager .add ("organizations:workflow-engine-issue-alert-dual-write" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
529529 # Enable workflow processing for metric issues
530- manager .add ("organizations:workflow-engine-process-metric-issue-workflows" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
530+ manager .add ("organizations:workflow-engine-process-metric-issue-workflows" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False , default = True )
531531 # Enable single processing through workflow engine for issue alerts
532532 manager .add ("organizations:workflow-engine-single-process-workflows" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
533533 # Enable logging to debug workflow engine process workflows
@@ -537,7 +537,7 @@ def register_temporary_features(manager: FeatureManager) -> None:
537537 # Enable logs to debug metric alert dual processing
538538 manager .add ("organizations:workflow-engine-metric-alert-dual-processing-logs" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
539539 # Enable Processing for Metric Alerts in the workflow_engine
540- manager .add ("organizations:workflow-engine-metric-alert-processing" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
540+ manager .add ("organizations:workflow-engine-metric-alert-processing" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False , default = True )
541541 # Enable Creation of Metric Alerts that use the `group_by` field in the workflow_engine
542542 manager .add ("organizations:workflow-engine-metric-alert-group-by-creation" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
543543 # Enable ingestion through trusted relays only
@@ -549,7 +549,7 @@ def register_temporary_features(manager: FeatureManager) -> None:
549549 # Use workflow engine serializers to return data for old rule / incident endpoints
550550 manager .add ("organizations:workflow-engine-rule-serializers" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
551551 # Enable single processing of metric issues
552- manager .add ("organizations:workflow-engine-single-process-metric-issues" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
552+ manager .add ("organizations:workflow-engine-single-process-metric-issues" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False , default = True )
553553 # Enable metric detector limits by plan type
554554 manager .add ("organizations:workflow-engine-metric-detector-limit" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
555555 # Enable EventUniqueUserFrequencyConditionWithConditions special alert condition
0 commit comments