You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/12/21 17:52:42 UTC

[GitHub] [airflow] syedahsn commented on a diff in pull request #28484: Add execution role parameter to AddStepsOperator

syedahsn commented on code in PR #28484:
URL: https://github.com/apache/airflow/pull/28484#discussion_r1054671315


##########
airflow/providers/amazon/aws/operators/emr.py:
##########
@@ -113,8 +122,14 @@ def execute(self, context: Context) -> list[str]:
         steps = self.steps
         if isinstance(steps, str):
             steps = ast.literal_eval(steps)
-
-        return emr_hook.add_job_flow_steps(job_flow_id=job_flow_id, steps=steps, wait_for_completion=True)
+        # from pdb import set_trace
+        # set_trace()

Review Comment:
   Oops, that's embarrassing 😅. But I didn't know about the `breakpoint()` method, so it looks like I learned something 😃



-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org