vandonr-amz commented on code in PR #32513:
URL: https://github.com/apache/airflow/pull/32513#discussion_r1261805654
##########
airflow/providers/amazon/aws/operators/emr.py:
##########
@@ -1025,11 +1034,12 @@ def __init__(
self.aws_conn_id = aws_conn_id
self.release_label = release_label
self.job_type = job_type
- self.wait_for_completion = wait_for_completion
+ self.wait_for_completion = False if deferrable else wait_for_completion
Review Comment:
the "good" situation I'd expect as a user by setting
`operators.default_deferrable = True` is that my operators waiting for
completion would start deferring, and those not waiting would continue to not
wait
--
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]