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

   ### What do you see as an issue?
   
   The docstring for the S3ListOperator is incorrect for the `apply_wildcard` 
parameter:
   
   ```
   :param apply_wildcard: whether to treat '*' as a wildcard or a plain symbol 
in the prefix.
           By default SSL certificates are verified.
           You can provide the following values:
   
   
           - ``False``: do not validate SSL certificates. SSL will still be used
                    (unless use_ssl is False), but SSL certificates will not be
                    verified.
           - ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to 
uses.
                    You can specify this argument if you want to use a different
                    CA cert bundle than the one used by botocore.
   ```
   
   
   
   
   ### Solving the problem
   
   It looks as though most of the docstring should actually be part of the 
`verify` and not the `apply_wildcard` one. Moving the following lines up under 
the `verify` parameter should resolve:
   
   ```   
           By default SSL certificates are verified.
           You can provide the following values:
   
   
           - ``False``: do not validate SSL certificates. SSL will still be used
                    (unless use_ssl is False), but SSL certificates will not be
                    verified.
           - ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to 
uses.
                    You can specify this argument if you want to use a different
                    CA cert bundle than the one used by botocore.
   ```
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


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