adrian-adikteev commented on code in PR #44055:
URL: https://github.com/apache/airflow/pull/44055#discussion_r1846141336


##########
providers/src/airflow/providers/amazon/aws/operators/emr.py:
##########
@@ -638,6 +642,10 @@ class EmrCreateJobFlowOperator(BaseOperator):
     :param region_name: Region named passed to EmrHook
     :param wait_for_completion: Whether to finish task immediately after 
creation (False) or wait for jobflow
         completion (True)

Review Comment:
   Done



##########
providers/src/airflow/providers/amazon/aws/utils/waiter.py:
##########
@@ -83,3 +84,16 @@ def get_state(response, keys) -> str:
         if value is not None:
             value = value.get(key, None)
     return value
+
+
+class WaitPolicy(str, Enum):
+    # Wait for the cluster to be up.
+    DEFAULT = "default"

Review Comment:
   Done



-- 
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]

Reply via email to