diff mbox

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

Commit Message

Michael-Doyle Hudson Jan. 26, 2012, 8:51 p.m. UTC
Merge authors:
  Le Chi Thu le.chi.thu@linaro.org <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 <michael.hudson@linaro.org>
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
diff mbox

Patch

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