Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: 'USER': '', 'PASSWORD': '', 'HOST': 'localhost', 'PORT': '', } } # configuration for Celery & RabbitMQ BROKER_HOST = 'localhost' BROKER_PORT = 5672 # default RabbitMQ listening port BROKER_USER = "guest" BROKER_PASSWORD = "guest" CELERY_BACKEND = "amqp" # telling Celery to report the results back to RabbitMQ CELERY_RESULT_DBURI = "" # […]
↧