Skip to content

Commit 392b840

Browse files
committed
Replace "prefetching" with "prefetch" in comments.
1 parent dab440b commit 392b840

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airflow/providers/google/cloud/transfers/sftp_to_gcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class SFTPToGCSOperator(BaseOperator):
6969
If set as a sequence, the identities from the list must grant
7070
Service Account Token Creator IAM role to the directly preceding identity, with first
7171
account from the list granting this role to the originating account (templated).
72-
:param sftp_prefetch: Whether to enable SFTP prefetching, the default is True.
72+
:param sftp_prefetch: Whether to enable SFTP prefetch, the default is True.
7373
"""
7474

7575
template_fields: Sequence[str] = (

airflow/providers/sftp/hooks/sftp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def retrieve_file(self, remote_full_path: str, local_full_path: str, prefetch: b
231231
232232
:param remote_full_path: full path to the remote file
233233
:param local_full_path: full path to the local file
234-
:param prefetch: controls whether prefetching is performed (default: True)
234+
:param prefetch: controls whether prefetch is performed (default: True)
235235
"""
236236
conn = self.get_conn()
237237
conn.get(remote_full_path, local_full_path, prefetch=prefetch)

0 commit comments

Comments
 (0)