mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 14:50:16 +00:00
Fix accidentally-shortened installation timeouts
- Fixes #3244 Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
@@ -0,0 +1 @@
|
||||
Corrected an issue with installation timeouts which caused dependency resolution to fail for longer duration resolution steps.
|
||||
+1
-1
@@ -514,7 +514,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:
|
||||
|
||||
Reference in New Issue
Block a user