From patchwork Thu Jan 26 20:51:23 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: 6415 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 5CF2623E29 for ; Thu, 26 Jan 2012 20:51:25 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id 438DFA1809C for ; Thu, 26 Jan 2012 20:51:25 +0000 (UTC) Received: by bkar19 with SMTP id r19so1110713bka.11 for ; Thu, 26 Jan 2012 12:51:25 -0800 (PST) Received: by 10.205.134.129 with SMTP id ic1mr1740826bkc.92.1327611084939; Thu, 26 Jan 2012 12:51:24 -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.204.130.220 with SMTP id u28cs52369bks; Thu, 26 Jan 2012 12:51:24 -0800 (PST) Received: by 10.180.86.9 with SMTP id l9mr6467550wiz.15.1327611083996; Thu, 26 Jan 2012 12:51:23 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id z67si4664008weq.10.2012.01.26.12.51.23 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 26 Jan 2012 12:51:23 -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 1RqWHz-0005H6-I4 for ; Thu, 26 Jan 2012 20:51:23 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 7E819E04EB for ; Thu, 26 Jan 2012 20:51:23 +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: 205 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 205: pass on timeout in PrefixCommandRunner.run (Le Chi Thu) Message-Id: <20120126205123.29643.4463.launchpad@ackee.canonical.com> Date: Thu, 26 Jan 2012 20:51:23 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14719"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 3fa192f4891d974c05c094553a8666f5107e1f17 Merge authors: Le Chi Thu le.chi.thu@linaro.org Related merge proposals: https://code.launchpad.net/~le-chi-thu/lava-dispatcher/fix-lava-test-install-timeout/+merge/90250 proposed by: Le Chi Thu (le-chi-thu) review: Approve - Michael Hudson-Doyle (mwhudson) ------------------------------------------------------------ revno: 205 [merge] committer: Michael Hudson-Doyle branch nick: trunk timestamp: Fri 2012-01-27 09:45:20 +1300 message: pass on timeout in PrefixCommandRunner.run (Le Chi Thu) modified: 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 'lava_dispatcher/client/master.py' --- lava_dispatcher/client/master.py 2012-01-19 09:40:30 +0000 +++ lava_dispatcher/client/master.py 2012-01-26 10:14:07 +0000 @@ -219,7 +219,7 @@ self._prefix = prefix def run(self, cmd, response=None, timeout=-1): - return super(PrefixCommandRunner, self).run(self._prefix + cmd) + return super(PrefixCommandRunner, self).run(self._prefix + cmd, response, timeout) class MasterCommandRunner(NetworkCommandRunner):