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 2021/12/13 22:45:51 UTC

[GitHub] [airflow] ashb commented on a change in pull request #20271: Fix mypy airbyte provider errors

ashb commented on a change in pull request #20271:
URL: https://github.com/apache/airflow/pull/20271#discussion_r768180838



##########
File path: airflow/providers/airbyte/hooks/airbyte.py
##########
@@ -71,7 +71,7 @@ def wait_for_job(
                 raise AirflowException(f"Timeout: Airbyte job {job_id} is not ready after {timeout}s")
             time.sleep(wait_seconds)
             try:
-                job = self.get_job(job_id=job_id)
+                job = self.get_job(int(job_id=job_id))

Review comment:
       I think you mean
   ```suggestion
                   job = self.get_job(job_id=int(job_id))
   ```




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