Skip to content

Commit

Permalink
fix: TypeError during student.send_activation_email task (openedx#32743)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroAlipov authored Aug 24, 2023
1 parent d660d0c commit 6f9fc23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openedx/core/djangoapps/user_authn/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def check_pwned_password_and_send_track_event(user_id, password, internal_user=F

@shared_task(bind=True, default_retry_delay=30, max_retries=2)
@set_code_owner_attribute
def send_activation_email(self, msg_string, from_address=None):
def send_activation_email(self, msg_string, from_address=None, site_id=None):
"""
Sending an activation email to the user.
"""
Expand All @@ -62,7 +62,7 @@ def send_activation_email(self, msg_string, from_address=None):

dest_addr = msg.recipient.email_address

site = Site.objects.get_current()
site = Site.objects.get(id=site_id) if site_id else Site.objects.get_current()
user = User.objects.get(id=msg.recipient.lms_user_id)

try:
Expand Down

0 comments on commit 6f9fc23

Please sign in to comment.