From e398a0ac5e88df7b6ccb770d89c348c4d32859f1 Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Wed, 27 Mar 2019 14:12:42 -0400 Subject: [PATCH] Remove the isolated_heartbeat setup from settings/defaults.py --- awx/settings/defaults.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 9fdf03163f..5254ef4e99 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -491,11 +491,7 @@ CELERYBEAT_SCHEDULE = { 'schedule': timedelta(seconds=20), 'options': {'expires': 20} }, - 'isolated_heartbeat': { - 'task': 'awx.main.tasks.awx_isolated_heartbeat', - 'schedule': timedelta(seconds=AWX_ISOLATED_PERIODIC_CHECK), - 'options': {'expires': AWX_ISOLATED_PERIODIC_CHECK * 2}, - } + # 'isolated_heartbeat': set up at the end of production.py and development.py } AWX_INCONSISTENT_TASK_INTERVAL = 60 * 3