llamasoft opened a new issue, #1883:
URL: https://github.com/apache/libcloud/issues/1883
## Summary
Attempting to use Rackspace Cloud Files with `use_internal_url=True` option
results in `LibcloudError("Could not find specified endpoint")`
## Detailed Information
python version: 3.9.2
libcloud version: 3.7.0
Example code:
```
from libcloud.storage.types import Provider
from libcloud.storage.providers import get_driver
driver_cls = get_driver(Provider.CLOUDFILES)
cloudfiles = driver_cls("USERNAME", "API_KEY", use_internal_url=True)
# Throws LibcloudError("Could not find specified endpoint"):
cloudfiles.list_containers()
```
(Pull request incoming.)
--
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]