You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2022/12/12 15:28:02 UTC

[airflow] branch main updated: Fix S3KeySensor documentation (#28297)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new fb5182bb2f Fix S3KeySensor documentation (#28297)
fb5182bb2f is described below

commit fb5182bb2f749119f471c3da35179afd3a584775
Author: Adrian Castro <56...@users.noreply.github.com>
AuthorDate: Mon Dec 12 16:27:53 2022 +0100

    Fix S3KeySensor documentation (#28297)
---
 airflow/providers/amazon/aws/sensors/s3.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/providers/amazon/aws/sensors/s3.py b/airflow/providers/amazon/aws/sensors/s3.py
index c60e46841e..40e31596d7 100644
--- a/airflow/providers/amazon/aws/sensors/s3.py
+++ b/airflow/providers/amazon/aws/sensors/s3.py
@@ -35,8 +35,8 @@ from airflow.sensors.base import BaseSensorOperator, poke_mode_only
 class S3KeySensor(BaseSensorOperator):
     """
     Waits for one or multiple keys (a file-like instance on S3) to be present in a S3 bucket.
-    S3 being a key/value it does not support folders. The path is just a key
-    a resource.
+    The path is just a key/value pointer to a resource for the given S3 path.
+    Note: S3 does not support folders directly, and only provides key/value pairs.
 
     .. seealso::
         For more information on how to use this sensor, take a look at the guide: