From c4abeb2de09d8022a970652df4c640b8c1d45000 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Wed, 12 Feb 2025 10:24:48 -0800 Subject: [PATCH] remove self from process_event_profile_change (#6506) --- kitsune/users/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitsune/users/tasks.py b/kitsune/users/tasks.py index 702c7f0ff49..f32200aee30 100644 --- a/kitsune/users/tasks.py +++ b/kitsune/users/tasks.py @@ -74,7 +74,7 @@ def process_event_password_change(event_id): @shared_task_with_retry @skip_if_read_only_mode -def process_event_profile_change(self, event_id): +def process_event_profile_change(event_id): event = AccountEvent.objects.get(id=event_id) refresh_token = event.profile.fxa_refresh_token