From c4983f9b9064d786b0e1afa31324b1cd6a5d05f7 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Tue, 3 Nov 2020 14:26:43 +0100 Subject: [PATCH] Fix callback_log_plays tests for current devel branch of ansible-base. (#1221) (#1222) (cherry picked from commit 549f228e1cb420af6f1d970eb3b18006c22f2641) Co-authored-by: Felix Fontein --- tests/integration/targets/callback_log_plays/runme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/targets/callback_log_plays/runme.sh b/tests/integration/targets/callback_log_plays/runme.sh index abcaae378c..af4a974629 100755 --- a/tests/integration/targets/callback_log_plays/runme.sh +++ b/tests/integration/targets/callback_log_plays/runme.sh @@ -2,7 +2,9 @@ set -eux +# ANSIBLE_CALLBACK_WHITELIST has been deprecated in ansible-base 2.11, ANSIBLE_CALLBACKS_ENABLED should be used export ANSIBLE_CALLBACK_WHITELIST="community.general.log_plays,${ANSIBLE_CALLBACK_WHITELIST:-}" +export ANSIBLE_CALLBACKS_ENABLED="community.general.log_plays,${ANSIBLE_CALLBACKS_ENABLED:-}" # run play, should create log and dir if needed export ANSIBLE_LOG_FOLDER="logit"