From patchwork Wed Nov 16 03:54:15 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 5164 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 7A7A523E06 for ; Wed, 16 Nov 2011 03:54:18 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 69A1CA1826A for ; Wed, 16 Nov 2011 03:54:18 +0000 (UTC) Received: by faaa26 with SMTP id a26so1610403faa.11 for ; Tue, 15 Nov 2011 19:54:18 -0800 (PST) Received: by 10.152.144.136 with SMTP id sm8mr19056760lab.33.1321415658127; Tue, 15 Nov 2011 19:54:18 -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.152.41.198 with SMTP id h6cs67939lal; Tue, 15 Nov 2011 19:54:17 -0800 (PST) Received: by 10.180.81.73 with SMTP id y9mr33492741wix.37.1321415656015; Tue, 15 Nov 2011 19:54:16 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id fa7si1349278wib.62.2011.11.15.19.54.15 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Nov 2011 19:54:16 -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 1RQWZj-0001x7-Gm for ; Wed, 16 Nov 2011 03:54:15 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 6EB1AE01EB for ; Wed, 16 Nov 2011 03:54:15 +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: 156 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 156: increase timeout for waiting on the network to come up Message-Id: <20111116035415.27868.60432.launchpad@ackee.canonical.com> Date: Wed, 16 Nov 2011 03:54:15 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14291"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: c123e378a4b7a6951a926f7f56f953455d732679 Merge authors: Paul Larson (pwlars) Related merge proposals: https://code.launchpad.net/~pwlars/lava-dispatcher/increase-network-timeout/+merge/82302 proposed by: Paul Larson (pwlars) review: Approve - Paul Larson (pwlars) review: Needs Fixing - Spring Zhang (qzhang) ------------------------------------------------------------ revno: 156 [merge] committer: Paul Larson branch nick: lava-dispatcher timestamp: Tue 2011-11-15 21:51:55 -0600 message: increase timeout for waiting on the network to come up 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-10-27 09:11:47 +0000 +++ lava_dispatcher/client.py 2011-11-16 03:51:11 +0000 @@ -182,7 +182,7 @@ else: return False - def wait_network_up(self, timeout=120): + def wait_network_up(self, timeout=300): now = time.time() while time.time() < now+timeout: if self.check_network_up():