tasks env vars should be strings

This was causing rax unit test failures which are now alleviated
This commit is contained in:
Matthew Jones 2016-01-25 16:51:33 -05:00
parent 5a434d86f1
commit f775fa9680

View File

@ -1194,7 +1194,7 @@ class RunInventoryUpdate(BaseTask):
elif inventory_update.source == 'rax':
env['RAX_CREDS_FILE'] = cloud_credential
env['RAX_REGION'] = inventory_update.source_regions or 'all'
env['RAX_CACHE_MAX_AGE'] = 0
env['RAX_CACHE_MAX_AGE'] = "0"
# Set this environment variable so the vendored package won't
# complain about not being able to determine its version number.
env['PBR_VERSION'] = '0.5.21'