diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index 540eae7dc0..8acd28194c 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -765,7 +765,7 @@ class Registration(models.Model): def activate(self): self.user.is_active = True self._track_activation() - self.user.save() + self.user.save(update_fields=['is_active']) log.info(u'User %s (%s) account is successfully activated.', self.user.username, self.user.email) def _track_activation(self):