AC-1012 Open a new RabbitMQ connection for each forked process to prevent intermittent hang, update debug logging for job event callback.

This commit is contained in:
Chris Church
2014-02-07 17:12:46 -05:00
parent 8638f1e3d1
commit f02a93c333
3 changed files with 40 additions and 10 deletions

View File

@@ -46,6 +46,9 @@ if len(sys.argv) >= 2 and sys.argv[1] == 'test':
# Celery AMQP configuration.
BROKER_URL = 'amqp://awx-dev:AWXsome1@localhost:5672/awx-dev'
# Set True to enable additional logging from the job_event_callback plugin
JOB_CALLBACK_DEBUG = False
# Absolute filesystem path to the directory to host projects (with playbooks).
# This directory should NOT be web-accessible.
PROJECTS_ROOT = os.path.join(BASE_DIR, 'projects')