vandonr-amz commented on code in PR #32036:
URL: https://github.com/apache/airflow/pull/32036#discussion_r1235945863
##########
airflow/providers/amazon/aws/operators/batch.py:
##########
@@ -468,6 +480,21 @@ def execute(self, context: Context):
"serviceRole": self.service_role,
"tags": self.tags,
}
- self.hook.client.create_compute_environment(**trim_none_values(kwargs))
+ response =
self.hook.client.create_compute_environment(**trim_none_values(kwargs))
+ arn = response["computeEnvironmentArn"]
Review Comment:
ah yes, I wanted to return it because I thought it was a nice addition, but
then I forgot to.
--
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]