user_topics: Make bulk_set_user_topic_..._in_database atomic.

In e726012244, we removed the
@transaction.atomic decorator from the function
'bulk_set_user_topic_visibility_policy_in_database'.

We should keep it to avoid adding it to the caller
of this function, when reused in the future.
This commit is contained in:
Prakhar Pratyush 2024-05-21 11:21:52 +05:30 committed by Tim Abbott
parent 23c2ce1671
commit c91d018b38
1 changed files with 1 additions and 0 deletions

View File

@ -126,6 +126,7 @@ def get_topic_visibility_policy(
return visibility_policy return visibility_policy
@transaction.atomic(savepoint=False)
def bulk_set_user_topic_visibility_policy_in_database( def bulk_set_user_topic_visibility_policy_in_database(
user_profiles: List[UserProfile], user_profiles: List[UserProfile],
stream_id: int, stream_id: int,