This is an automated email from the ASF dual-hosted git repository. rahulvats pushed a commit to branch py-client-sync in repository https://gitbox.apache.org/repos/asf/airflow.git
commit fffa370f4bd1bf0ee55a40f71e3ae1544030ebd8 Author: SameerMesiah97 <[email protected]> AuthorDate: Tue Mar 24 08:05:48 2026 +0000 Fix typo in debug message for `AirbyteTriggerSyncOperator` (#64084) Co-authored-by: Sameer Mesiah <[email protected]> --- providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py b/providers/airbyte/src/airflow/providers/airbyte/operators/airbyte.py index 55cdb5f5658..9900e7adf17 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 @@ class AirbyteTriggerSyncOperator(BaseOperator): 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,
