vincbeck commented on code in PR #32155:
URL: https://github.com/apache/airflow/pull/32155#discussion_r1243902976


##########
airflow/providers/amazon/aws/operators/glue.py:
##########
@@ -123,12 +125,11 @@ def __init__(
         self.update_config = update_config
         self.deferrable = deferrable
         self.job_poll_interval = job_poll_interval
+        self.stop_job_run_on_kill = stop_job_run_on_kill
+        self._job_run_id: str | None = None
 
-    def execute(self, context: Context):
-        """Execute AWS Glue Job from Airflow.
-
-        :return: the current Glue job ID.
-        """
+    @cached_property
+    def glue_job(self) -> GlueJobHook:

Review Comment:
   ```suggestion
       def glue_job_hook(self) -> GlueJobHook:
   ```



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