hankehly commented on code in PR #32760:
URL: https://github.com/apache/airflow/pull/32760#discussion_r1271257738
##########
airflow/providers/amazon/aws/transfers/gcs_to_s3.py:
##########
@@ -130,10 +134,11 @@ def __init__(
self.s3_acl_policy = s3_acl_policy
self.keep_directory_structure = keep_directory_structure
self.match_glob = match_glob
+ self.gcp_user_project = gcp_user_project
def execute(self, context: Context) -> list[str]:
# list all files in an Google Cloud Storage bucket
- hook = GCSHook(
+ gcs_hook = GCSHook(
Review Comment:
Changed names of "hook" and "files" variables to "gcs_hook" and "gcs_files"
respectively to differentiate from s3 hook and files.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]