ferruzzi commented on code in PR #46950:
URL: https://github.com/apache/airflow/pull/46950#discussion_r1968886492


##########
providers/amazon/src/airflow/providers/amazon/aws/hooks/glue.py:
##########
@@ -236,6 +236,9 @@ def print_job_logs(
         """
         log_client = self.logs_hook.get_conn()
         paginator = log_client.get_paginator("filter_log_events")
+        job_run = self.conn.get_job_run(JobName=job_name, 
RunId=run_id)["JobRun"]
+        # StartTime needs to be an int and is Epoch time in  milliseconds

Review Comment:
   ```suggestion
           # StartTime needs to be an int and is Epoch time in milliseconds
   ```



-- 
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-unsubscr...@airflow.apache.org

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

Reply via email to