Skip to content

Commit

Permalink
Fix accidentally-shortened installation timeouts
Browse files Browse the repository at this point in the history
- Fixes #3244

Signed-off-by: Dan Ryan <dan@danryan.co>
  • Loading branch information
techalchemy committed Nov 21, 2018
1 parent 18f8c0a commit 566e1c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/3244.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Corrected an issue with installation timeouts which caused dependency resolution to fail for longer duration resolution steps.
2 changes: 1 addition & 1 deletion pipenv/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def resolve(cmd, sp):
out = to_native_string("")
while True:
try:
result = c.expect(u"\n", timeout=environments.PIPENV_TIMEOUT)
result = c.expect(u"\n", timeout=environments.PIPENV_INSTALL_TIMEOUT)
except (EOF, TIMEOUT):
pass
if result is None:
Expand Down

0 comments on commit 566e1c1

Please sign in to comment.