[Django]-Why are Django signals removed without weak=False?

8👍

I just found the answer to my question: the code was perfectly fine, but I was overwriting the function with a different handler that I defined below it with the same name… -.-u That is why that handler was being garbage collected when weakrefs where being used. I’ll leave the question here so others can see how to properly connect signals according to the Django documentation.

Leave a comment