@@ -460,7 +460,7 @@ def activity_group_share(request): |
||
460 | 460 |
return response() |
461 | 461 |
|
462 | 462 |
try: |
463 |
- act = MemberActivityInfo.objects.select_for_update().get(activity_id=activity_id, status=True) |
|
463 |
+ act = MemberActivityInfo.objects.get(activity_id=activity_id, status=True) |
|
464 | 464 |
except MemberActivityInfo.DoesNotExist: |
465 | 465 |
return response(MemberActivityStatusCode.ACTIVITY_NOT_FOUND) |
466 | 466 |
|