Closed
Description
Environment
- pip version: 20.0.2
- Python version: 3.7.3
- OS: CentOS Linux release 7.4.1708
- Virtualenv version: 16.6.1 (ran as "virtualenv --python=3.7 build/python_env")
Description
If a host is added as a trusted-host, it won't use the cache.
Expected behavior
trusted-hosts use the cache.
How to Reproduce
- pip config --site set global.index-url https://example.com/api/pypi/pypi/simple/
- pip config --site set global.trusted-host example.com
- pip install -r pip_requirements.txt
Output
Line from broken output:
Collecting requests==2.23.0
Downloading https://artifactory.rnclab.us.alcatel-lucent.com/artifactory/api/pypi/pypi/packages/1a/70/1935c770cb3be6e3a8b78ced23d7e0f3b187f5cbfab4749523ed65d7c9b1/requests-2.23.0-py2.py3-none-any.whl (58 kB)
|████████████████████████████████| 58 kB 3.0 MB/s
Line from non-broken output (not configuring trusted-host):
Collecting requests==2.23.0
Using cached https://example.com/artifactory/api/pypi/pypi/packages/1a/70/1935c770cb3be6e3a8b78ced23d7e0f3b187f5cbfab4749523ed65d7c9b1/requests-2.23.0-py2.py3-none-any.whl (58 kB)