From patchwork Mon Aug 1 15:39:15 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 3206 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 D05662406F for ; Mon, 1 Aug 2011 15:39:17 +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 9699EA186BD for ; Mon, 1 Aug 2011 15:39:17 +0000 (UTC) Received: by qyk30 with SMTP id 30so4082093qyk.11 for ; Mon, 01 Aug 2011 08:39:17 -0700 (PDT) Received: by 10.229.183.84 with SMTP id cf20mr828072qcb.121.1312213156910; Mon, 01 Aug 2011 08:39:16 -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.6.73 with SMTP id 9cs96668qcy; Mon, 1 Aug 2011 08:39:16 -0700 (PDT) Received: by 10.216.229.210 with SMTP id h60mr871314weq.29.1312213155584; Mon, 01 Aug 2011 08:39:15 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id t60si9508245wec.62.2011.08.01.08.39.15; Mon, 01 Aug 2011 08:39:15 -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 1QnuaJ-0007qk-1s for ; Mon, 01 Aug 2011 15:39:15 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 0B25E2E8067 for ; Mon, 1 Aug 2011 15:39:15 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 56 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 56: pass the environment along (in the bizarre way you get Twisted to do this) Message-Id: <20110801153915.20319.1561.launchpad@loganberry.canonical.com> Date: Mon, 01 Aug 2011 15:39: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="13543"; Instance="initZopeless config overlay" X-Launchpad-Hash: ad707f5e0fce34a882312533a48f0ab8fca4c439 ------------------------------------------------------------ revno: 56 committer: Michael-Doyle Hudson branch nick: trunk timestamp: Mon 2011-08-01 16:27:33 +0100 message: pass the environment along (in the bizarre way you get Twisted to do this) to the dispatcher modified: lava_scheduler_daemon/board.py --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'lava_scheduler_daemon/board.py' --- lava_scheduler_daemon/board.py 2011-07-27 06:50:34 +0000 +++ lava_scheduler_daemon/board.py 2011-08-01 15:27:33 +0000 @@ -48,7 +48,7 @@ self.reactor.spawnProcess( DispatcherProcessProtocol(d, log_file), self.dispatcher, args=[self.dispatcher, self._json_file], - childFDs={0:0, 1:'r', 2:'r'}) + childFDs={0:0, 1:'r', 2:'r'}, env=None) d.addBoth(self._exited) return d