1
It happens because of race condition you can fix this behaviour using select_for_update
from django.db import transaction
with transaction.atomic():
product = Product.objects.select_for_update().filter(user__isnull=True).first()
if product:
product.user = request.user
product.save()
Source:stackexchange.com