ssl - unable to figure out which package update lead to change of CA certs location for python requests package -


i trying figure out package update have lead change in default ca location python requests package. listed below findings on 2 different nodes running rhel 7.

one can check cert-store being used requests package specified below:

[root@compute-01 test]# python -mrequests.certs /etc/pki/tls/certs/ca-bundle.crt  [root@compute-01 test]# openssl version openssl 1.0.1e-fips 11 feb 2013  [root@compute-01 test]# python python 2.7.5 (default, oct 11 2015, 17:47:16)  [gcc 4.8.3 20140911 (red hat 4.8.3-9)] on linux2 type "help", "copyright", "credits" or "license" more information. >>> import requests >>> requests.__version__ '2.7.0' 

the same thing on other node follows:-

[root@compute-25 test]# python -m requests.certs /usr/lib/python2.7/site-packages/requests/cacert.pem  [root@compute-25 test]# openssl version openssl 1.0.1e-fips 11 feb 2013  [root@compute-25 test]# python python 2.7.5 (default, oct 11 2015, 17:47:16)  [gcc 4.8.3 20140911 (red hat 4.8.3-9)] on linux2 type "help", "copyright", "credits" or "license" more information. >>> import requests >>> requests.__version__ '2.7.0' 

i unable figure out package might have got upgraded lead this. unable figure out next should check. kindly advise.

one version of requests (the former) installed system package manager , latter installed pip.


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -