niallscc opened a new issue, #47116:
URL: https://github.com/apache/airflow/issues/47116

   
https://github.com/apache/airflow/blob/758755a24cea1586295a4c0425a738c0a6b5bafa/providers/google/src/airflow/providers/google/cloud/operators/gcs.py#L198
   
   Hello, When reading the documentation I realized that the docs have a minor 
typo. 
   
   The example reads: 
   
   ```
   GCS_Files = GCSListOperator(
                   task_id="GCS_Files",
                   bucket="data",
                   prefix="sales/sales-2017/",
                   match_glob="**/*/.avro",
                   gcp_conn_id=google_cloud_conn_id,
   )
   ```
   However it should be: 
   ```
   GCS_Files = GCSListOperator(
                   task_id="GCS_Files",
                   bucket="data",
                   prefix="sales/sales-2017/",
                   match_glob="**/*.avro",
                   gcp_conn_id=google_cloud_conn_id,
   )
   ```
   
   Fixing this could help folks use the documentation more effectively.
   
   thanks!


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

Reply via email to