dariocurr opened a new pull request, #13238: URL: https://github.com/apache/arrow/pull/13238
Hi, I am Dario, a developer at [BuildNN](https://github.com/buildnn). First of all, thank you for your work! Today I was trying to connect to [minio](https://min.io/) using [`S3FileSystem`](https://arrow.apache.org/docs/python/generated/pyarrow.fs.S3FileSystem.html). So I tried `endpoint_override="localhost:9000"` as suggested in your documentation, but I got the following error: ```py File "pyarrow/error.pxi", line 114, in pyarrow.lib.check_status OSError: When creating bucket 'test-bucket': AWS Error [code 99]: curlCode: 35, SSL connect error ``` After some tries, I discovered that the protocol prefix is required (e.g. `http:\\`), so when I use `endpoint_override="http://localhost:9000"` everything works just fine. I guess then that the documentation is not updated -- 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]
