diff mbox

[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
State Accepted
Headers show

Commit Message

Michael-Doyle Hudson Aug. 1, 2011, 3:39 p.m. UTC
------------------------------------------------------------
revno: 56
committer: Michael-Doyle Hudson <michael.hudson@linaro.org>
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
diff mbox

Patch

=== 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