c-w commented on issue #1322: list_container_objects doesn't work for Azure blob storage under python 2.7.5 URL: https://github.com/apache/libcloud/issues/1322#issuecomment-515295707 This is strange. I just pushed a [change](https://github.com/c-w/libcloud-tests/commit/99530c899fd5ae44c7d0c85566eed9e9cffc3f20) to [libcloud-tests](https://github.com/c-w/libcloud-tests) to run the Azure storage integration tests with a specific version of requests and ran the [CI with requests==2.6.0](https://clewolff.visualstudio.com/libcloud-tests/_build/results?buildId=289) but I can't reproduce the error on the Ubuntu/Mac/Windows agents. I was also unable to reproduce the error on Centos 7 via this approach: ``` $ docker run -it centos:7.3.1611 bash > curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" > python get-pip.py > pip install requests==2.6.0 > pip install apache-libcloud==2.5.0 > python -c "from libcloud.storage.types import Provider; from libcloud.storage.providers import get_driver; cls = get_driver(Provider.AZURE_BLOBS); driver = cls(key='XXX', secret='YYY); container = driver.get_container('ZZZ'); objs = driver.list_container_objects(container, 'PPP'); print(objs)" ``` So perhaps this is something specific to RHEL's version of requests? Do you have a script I could use to reproduce the error @charlesyc?
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
