When Unix style glob patterns are passed through the CLI option
the deploy_s3() function skips the step to push logs to the S3 bucket.
Issue-Id: RELENG-3866
Change-Id: I58d6ef8dab41213fdbc431294ddd21854adc60dc
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
"""Deploy logs and archives to a S3 bucket."""
if not pattern:
pattern = None
- deploy_sys.deploy_s3(s3_bucket, s3_path, build_url, workspace, pattern)
+ deploy_sys.deploy_s3(s3_bucket, s3_path, build_url, workspace, pattern)
log.info("Logs upload to S3 complete.")
--- /dev/null
+---
+fixes:
+ - |
+ Fix: Indent line correctly to call deploy s3 function.
+
+ When Unix style glob patterns are passed through the CLI option
+ the deploy_s3() function skips the step to push logs to the S3 bucket.