[Fixed]-Django seems to work asyncroniously for some reason

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()

Leave a comment