post_save signal isn't called
I've already read all related questions. I have two Django projects, and signals work fine in one, but do not work in second one (I've just copy-pasted code and changed names respectively). I have an orders app with Order model. App is included in INSTALLED_APPS setting. I have app config in apps.py: from django.apps import AppConfig class OrdersConfig(AppConfig): name = 'orders' def ready(self): super(OrdersConfig, self).ready() # noinspection PyUnresolvedReferences import signals __init__.py : default_app_config = 'orders.apps.OrdersConfig' And, finally, signals.py: @receiver(post_save,