1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

fix a bug that causes azure inventory syncs w/ region='all' to fail

see: https://github.com/ansible/ansible-tower/issues/7668
This commit is contained in:
Ryan Petrello 2017-09-21 15:08:54 -04:00
parent 44af8ac629
commit 328b70ceb8
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -1791,7 +1791,7 @@ class RunInventoryUpdate(BaseTask):
cp.set(section, 'group_by_resource_group', 'yes')
cp.set(section, 'group_by_location', 'yes')
cp.set(section, 'group_by_tag', 'yes')
if inventory_update.source_regions:
if inventory_update.source_regions and 'all' not in inventory_update.source_regions:
cp.set(
section, 'locations',
','.join([x.strip() for x in inventory_update.source_regions.split(',')])