I've been looking everywhere and I coulnd't find any reference about this, my Django model signal only works when the debug=True, but it doesn't work if debug=False, this occur both on localhost and production server.
My settings looks like this:
settings.py
from pathlib import Path
import os
import environ
env = environ.Env()
environ.Env.read_env()
BASE_DIR = Path(__file__).resolve().parent.parent
#production
STATIC_ROOT = 'https://d1u356tnw52tcs.cloudfront.net/'
SECRET_KEY = env("SECRET_KEY_PROD")
DEBUG = True
ALLOWED_HOSTS = ['*']
CORS_ORIGIN_ALLOW_ALL = True
CORS_ORIGIN_WHITELIST = (
)
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'django.contrib.postgres',
'sellrapp',
'stock_management',
'corsheaders',
'drf_yasg',
'optimized_image',
'csvexport',
'kronos',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'corsheaders.middleware.CorsMiddleware'
]
ROOT_URLCONF = '****.urls'
WSGI_APPLICATION = '****.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': env("NAME_PROD"),
'USER': env("USER_PROD"),
'PASSWORD': env("PASSWORD_PROD"),
'HOST': env("HOST_PROD"),
'PORT': env("PORT_PROD"),
}
}
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Singapore'
USE_I18N = True
USE_L10N = True
USE_TZ = True
WEB_BASE_URL = 'https://****.com/'
BASE_URL_LIVE_CAMPAIGN = WEB_BASE_URL + "product/"
if set to debug=False, the signal wouldn't triggered, and there's no any error trown.
signals.py
from django.dispatch import receiver
from django.db.models.signals import pre_save, post_save, pre_delete
from .models import ManualWithdrawals
@receiver(pre_delete, sender=ManualWithdrawals)
def manual_wd(sender, instance, **kwargs):
order = ManualWithdrawals.objects.get(id=instance.id)
consumer_order = order.order_id_list.all()
sample_order = order.sample_order_id_list.all()
total = str(instance.total_withdrawals).replace(".", "")
total = int(total)
if instance.order_id_list:
for order in consumer_order:
if instance.type == "reseller" and order.reseller_commission_status != "paid":
order.reseller_commission_status = "ready for collection"
order.save()
if instance.type == "merchant" and order.merchant_commission_status != "paid":
order.merchant_commission_status = "ready for collection"
order.save()
# updating sample order if any
if instance.sample_order_id_list:
for order in sample_order:
if instance.type == "merchant" and order.merchant_commission_status != "paid":
order.merchant_commission_status = "ready for collection"
order.save()