Skip to content

Commit

Permalink
Remove 'enable-soft-blocking' Waffle Switch Migration
Browse files Browse the repository at this point in the history
This migration removes the Waffle switch for soft blocking as part of the ongoing simplification of blocklist filter logic.
  • Loading branch information
KevinMind committed Feb 4, 2025
1 parent 181ead8 commit 6a4ba6c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/olympia/blocklist/migrations/0041_auto_20250130_1851.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Generated by Django 4.2.18 on 2025-01-30 18:51

from django.db import migrations

from olympia.core.db.migrations import DeleteWaffleSwitch


class Migration(migrations.Migration):

dependencies = [
('blocklist', '0040_remove_blockversion_soft'),
]

operations = [
DeleteWaffleSwitch('enable-soft-blocking'),
]

0 comments on commit 6a4ba6c

Please sign in to comment.