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-515593144 Thanks for providing the repro steps. I'm able to reproduce this now. There must be something wrong with the distribution of requests in the yum package: This doesn't work: ``` yum install python-requests -y curl -O https://bootstrap.pypa.io/get-pip.py python get-pip.py pip install apache-libcloud python -c "..." # breaks ``` But this does work: ``` curl -O https://bootstrap.pypa.io/get-pip.py python get-pip.py pip install requests==2.6.0 pip install apache-libcloud python -c "..." # works ```
---------------------------------------------------------------- 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
