From f3b86b5193e3cd9cd313d1b96b93c81f88723875 Mon Sep 17 00:00:00 2001 From: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Date: Thu, 5 Dec 2024 09:35:21 -0500 Subject: [PATCH] Update defaults.py receptor typo (#15682) (#6754) Fixing typo for RECEPTOR_KEEP_WORK_ON_ERROR Co-authored-by: linuxonfire --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index c2fd50a6bf..9394d79b1e 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -1024,7 +1024,7 @@ AWX_RUNNER_KEEPALIVE_SECONDS = 0 # Delete completed work units in receptor RECEPTOR_RELEASE_WORK = True -RECPETOR_KEEP_WORK_ON_ERROR = False +RECEPTOR_KEEP_WORK_ON_ERROR = False # K8S only. Use receptor_log_level on AWX spec to set this properly RECEPTOR_LOG_LEVEL = 'info'