mirror of
https://github.com/ansible/awx.git
synced 2026-03-19 09:57:33 -02:30
Merge pull request #8141 from kdelee/fix_analytics_tests
Print one targz per line (analytics gather) Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -52,7 +52,8 @@ class Command(BaseCommand):
|
|||||||
return
|
return
|
||||||
tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until)
|
tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until)
|
||||||
if tgzfiles:
|
if tgzfiles:
|
||||||
self.logger.debug(tgzfiles)
|
for tgz in tgzfiles:
|
||||||
|
self.logger.debug(tgz)
|
||||||
else:
|
else:
|
||||||
self.logger.error('No analytics collected')
|
self.logger.error('No analytics collected')
|
||||||
if opt_ship:
|
if opt_ship:
|
||||||
|
|||||||
Reference in New Issue
Block a user