Taragolis commented on code in PR #29522:
URL: https://github.com/apache/airflow/pull/29522#discussion_r1116243761
##########
airflow/providers/amazon/aws/operators/batch.py:
##########
@@ -174,18 +209,27 @@ def submit_job(self, context: Context):
self.job_definition,
self.job_queue,
)
- self.log.info("AWS Batch job - container overrides: %s",
self.overrides)
+
+ if self.container_overrides:
+ self.log.info("AWS Batch job - container overrides: %s",
self.container_overrides)
+ if self.array_properties:
+ self.log.info("AWS Batch job - array properties: %s",
self.array_properties)
+ if self.node_overrides:
+ self.log.info("AWS Batch job - node properties: %s",
self.node_overrides)
Review Comment:
This settings not intend to use for pass sensitive information, same info
stored into the rendered templates and in AWS Console Batch Job Details.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]