mirror of
https://github.com/ansible/awx.git
synced 2026-04-11 21:19:22 -02:30
Fix f-string in log that is broken (#16132)
This commit is contained in:
@@ -1321,7 +1321,7 @@ class RunProjectUpdate(BaseTask):
|
|||||||
|
|
||||||
galaxy_creds_are_defined = project_update.project.organization and project_update.project.organization.galaxy_credentials.exists()
|
galaxy_creds_are_defined = project_update.project.organization and project_update.project.organization.galaxy_credentials.exists()
|
||||||
if not galaxy_creds_are_defined and (settings.AWX_ROLES_ENABLED or settings.AWX_COLLECTIONS_ENABLED):
|
if not galaxy_creds_are_defined and (settings.AWX_ROLES_ENABLED or settings.AWX_COLLECTIONS_ENABLED):
|
||||||
logger.warning('Galaxy role/collection syncing is enabled, but no credentials are configured for {project_update.project.organization}.')
|
logger.warning(f'Galaxy role/collection syncing is enabled, but no credentials are configured for {project_update.project.organization}.')
|
||||||
|
|
||||||
extra_vars.update(
|
extra_vars.update(
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user