Merge pull request #5784 from ansible/runner_changes_42 (#12083)

This commit is contained in:
John Westcott IV
2022-04-22 10:46:35 -04:00
committed by GitHub
parent 47160f0118
commit a0ccc8c925
6 changed files with 90 additions and 103 deletions

View File

@@ -100,3 +100,9 @@ JOB_VARIABLE_PREFIXES = [
'awx',
'tower',
]
# Note, the \u001b[... are ansi color codes. We don't currenly import any of the python modules which define the codes.
# Importing a library just for this message seemed like overkill
ANSIBLE_RUNNER_NEEDS_UPDATE_MESSAGE = (
'\u001b[31m \u001b[1m This can be caused if the version of ansible-runner in your execution environment is out of date.\u001b[0m'
)