From patchwork Mon Jul 18 07:53:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Spring Zhang X-Patchwork-Id: 2735 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 47F7A23F3F for ; Mon, 18 Jul 2011 07:53:37 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 06EBAA18330 for ; Mon, 18 Jul 2011 07:53:36 +0000 (UTC) Received: by qyk30 with SMTP id 30so2062499qyk.11 for ; Mon, 18 Jul 2011 00:53:36 -0700 (PDT) Received: by 10.229.217.3 with SMTP id hk3mr5168165qcb.38.1310975616440; Mon, 18 Jul 2011 00:53:36 -0700 (PDT) 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.229.217.78 with SMTP id hl14cs47499qcb; Mon, 18 Jul 2011 00:53:36 -0700 (PDT) Received: by 10.216.62.204 with SMTP id y54mr4946646wec.73.1310975615032; Mon, 18 Jul 2011 00:53:35 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id s11si5945378wec.79.2011.07.18.00.53.34; Mon, 18 Jul 2011 00:53:35 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qiidx-0005u8-KY for ; Mon, 18 Jul 2011 07:53:33 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 960602E8060 for ; Mon, 18 Jul 2011 07:53:33 +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: 76 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 76: increase network detecting wait timeout for some board needs more time to prepare the network Message-Id: <20110718075333.29595.98454.launchpad@loganberry.canonical.com> Date: Mon, 18 Jul 2011 07:53:33 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13453"; Instance="initZopeless config overlay" X-Launchpad-Hash: a7a331fb843ef5be2c1bd18cf78dc531d0eb4f43 Merge authors: Spring Zhang (qzhang) Related merge proposals: https://code.launchpad.net/~qzhang/lava-dispatcher/increase-network-timeout/+merge/66551 proposed by: Spring Zhang (qzhang) review: Approve - Paul Larson (pwlars) ------------------------------------------------------------ revno: 76 [merge] committer: Spring Zhang branch nick: lava-dispatcher timestamp: Mon 2011-07-18 15:51:27 +0800 message: increase network detecting wait timeout for some board needs more time to prepare the network modified: lava_dispatcher/client.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 'lava_dispatcher/client.py' --- lava_dispatcher/client.py 2011-06-27 04:55:08 +0000 +++ lava_dispatcher/client.py 2011-07-01 06:08:43 +0000 @@ -117,7 +117,7 @@ else: return False - def wait_network_up(self, timeout=60): + def wait_network_up(self, timeout=120): now = time.time() while time.time() < now+timeout: if self.check_network_up():