[Django]-Django "Lock wait timeout exceeded; try restarting transaction" while saving/updating a model

6👍

Turns out, post_save signal had bad code that was blocking (incomplete Celery task). Was under the impression that the signal is received after that was complete, but it seems to not be the case.

Leave a comment