From 058189dfcf0805ed133465b7efe7e4b86ea04eb4 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 24 May 2021 17:20:53 -0400 Subject: [PATCH] tweak message about image pull option --- .../migrations/0126_executionenvironment_container_options.py | 2 +- awx/main/models/execution_environments.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/migrations/0126_executionenvironment_container_options.py b/awx/main/migrations/0126_executionenvironment_container_options.py index 8f97b8abc6..8c3da310fe 100644 --- a/awx/main/migrations/0126_executionenvironment_container_options.py +++ b/awx/main/migrations/0126_executionenvironment_container_options.py @@ -16,7 +16,7 @@ class Migration(migrations.Migration): field=models.CharField( choices=[ ('always', 'Always pull container before running.'), - ('missing', 'No pull option has been selected.'), + ('missing', 'Only pull the image if not present before running.'), ('never', 'Never pull container before running.'), ], blank=True, diff --git a/awx/main/models/execution_environments.py b/awx/main/models/execution_environments.py index 4bf8309bc8..656cd97bf0 100644 --- a/awx/main/models/execution_environments.py +++ b/awx/main/models/execution_environments.py @@ -14,7 +14,7 @@ class ExecutionEnvironment(CommonModel): PULL_CHOICES = [ ('always', _("Always pull container before running.")), - ('missing', _("No pull option has been selected.")), + ('missing', _("Only pull the image if not present before running.")), ('never', _("Never pull container before running.")), ]