So I have the following signal set up
post_save.connect(self.increment_on,
sender=self.model_dict[self.model_involved],
dispatch_uid='increment_for' +
self.model_involved + '_creation')
The signal works for the first 1-3 saves of the model and then stops running the function ( increment_on
)
Is this normal? I am combing through the docs on signals and cant find it. post_save is wrapped in a function, should I call that function again? if so where?