diff --git a/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py b/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py index 55cdb5f5658ff..9900e7adf1772 100644 --- a/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py +++ b/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py @@ -94,7 +94,7 @@ def execute(self, context: Context) -> None: self.log.debug("Running in non-deferrable mode...") hook.wait_for_job(job_id=self.job_id, wait_seconds=self.wait_seconds, timeout=self.timeout) else: - self.log.debug("Running in defferable mode in job state %s...", state) + self.log.debug("Running in deferrable mode in job state %s...", state) if state in (JobStatusEnum.RUNNING, JobStatusEnum.PENDING, JobStatusEnum.INCOMPLETE): self.defer( timeout=self.execution_timeout,