Fix accidentally-shortened installation timeouts

- Fixes #3244

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-11-21 13:20:44 -05:00
parent bd51de4e89
commit 93f82c477e
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
Corrected an issue with installation timeouts which caused dependency resolution to fail for longer duration resolution steps.
+1 -1
View File
@@ -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: