=== modified file 'doc/changes.rst'
@@ -1,6 +1,15 @@
Version History
***************
+.. _version_0_5_7:
+
+Version 0.5.7
+=============
+
+* Increase wget connect timeout to see if we can work around a possible
+ issue where the server gets busy, and doesn't connect quickly enough
+ for getting the tarballs
+
.. _version_0_5_6:
Version 0.5.6
=== modified file 'lava_dispatcher/client/master.py'
@@ -72,7 +72,7 @@
elif tarball_url.endswith('.bz2'):
decompression_char = 'j'
session.run(
- 'wget -qO- %s |tar --numeric-owner -C %s -x%sf -' % (
+ 'wget --connect-timeout=30 -qO- %s |tar --numeric-owner -C %s -x%sf -' % (
tarball_url, dest, decompression_char),
timeout=timeout)