Skip to content

Commit db080bd

Browse files
committed
Add block to specifically catch connection errors
1 parent bc37c60 commit db080bd

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

docs/html/user_guide.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,10 @@ archives are built with identical packages.
788788
to use such a package, see :ref:`Controlling
789789
setup_requires<controlling-setup-requires>`.
790790

791-
.. _`Using pip from your program`:
791+
Fixing network errors
792+
=====================
793+
794+
TODO
792795

793796
Fixing conflicting dependencies
794797
===============================

src/pip/_internal/index/collector.py

+10
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,16 @@ def _get_html_page(link, session=None):
460460
except SSLError as exc:
461461
reason = "There was a problem confirming the ssl certificate"
462462
logger.warning("Could not fetch URL %s: %s: %s", link, reason, exc)
463+
except requests.ConnectTimeout:
464+
template = (
465+
"Skipping URL %s since the connection timed out. This is likely "
466+
"caused by a misconfigured network."
467+
)
468+
logger.warning(template, link)
469+
logger.warning(
470+
"For help, visit "
471+
"https://pip.pypa.io/en/latest/user_guide/#fixing-network-errors"
472+
)
463473
except requests.ConnectionError as exc:
464474
reason = "connection error"
465475
logger.warning("Could not fetch URL %s: %s: %s", link, reason, exc)

0 commit comments

Comments
 (0)