From patchwork Fri Mar 9 01:02:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 7181 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id B7F1923E01 for ; Fri, 9 Mar 2012 01:02:15 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 7CD8AA1861B for ; Fri, 9 Mar 2012 01:02:15 +0000 (UTC) Received: by iage36 with SMTP id e36so2000822iag.11 for ; Thu, 08 Mar 2012 17:02:15 -0800 (PST) Received: by 10.50.183.137 with SMTP id em9mr11994142igc.58.1331254934934; Thu, 08 Mar 2012 17:02:14 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.53.18 with SMTP id k18csp22098ibg; Thu, 8 Mar 2012 17:02:14 -0800 (PST) Received: by 10.180.86.105 with SMTP id o9mr836684wiz.4.1331254933625; Thu, 08 Mar 2012 17:02:13 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id l33si4967529weq.80.2012.03.08.17.02.13 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 08 Mar 2012 17:02:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1S5oDk-0008I9-W5 for ; Fri, 09 Mar 2012 01:02:12 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id E1E41E14F7 for ; Fri, 9 Mar 2012 01:02:12 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dispatcher X-Launchpad-Branch: ~linaro-validation/lava-dispatcher/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 243 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 243: Increase wget connect timeout to see if it improves deployment reliability when the server is busy Message-Id: <20120309010212.28768.93500.launchpad@ackee.canonical.com> Date: Fri, 09 Mar 2012 01:02:12 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14914"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 2a3c24ff8490d16e7bd5cf007650bab9e524278a X-Gm-Message-State: ALoCoQnZDGN0Zyel7i6ARHNs+lRkBpW2Pu0G4LocnkzUq46CM2jZ/gJnfx8UiaCD723qsncGPewy Merge authors: Paul Larson Related merge proposals: https://code.launchpad.net/~pwlars/lava-dispatcher/fix-wget-timeout/+merge/96665 proposed by: Paul Larson (pwlars) review: Approve - Le Chi Thu (le-chi-thu) ------------------------------------------------------------ revno: 243 [merge] committer: Michael Hudson-Doyle branch nick: trunk timestamp: Fri 2012-03-09 14:00:11 +1300 message: Increase wget connect timeout to see if it improves deployment reliability when the server is busy modified: doc/changes.rst lava_dispatcher/client/master.py --- lp:lava-dispatcher https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk You are subscribed to branch lp:lava-dispatcher. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription === modified file 'doc/changes.rst' --- doc/changes.rst 2012-03-02 03:12:54 +0000 +++ doc/changes.rst 2012-03-08 21:31:03 +0000 @@ -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' --- lava_dispatcher/client/master.py 2012-03-06 23:12:33 +0000 +++ lava_dispatcher/client/master.py 2012-03-08 21:31:03 +0000 @@ -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)