Merge lp:~le-chi-thu/lava-dispatcher/fix-lava-test-install-timeout into lp:lava-dispatcher

Proposed by Le Chi Thu
Status: Merged
Merged at revision: 205
Proposed branch: lp:~le-chi-thu/lava-dispatcher/fix-lava-test-install-timeout
Merge into: lp:lava-dispatcher
Diff against target: 12 lines (+1/-1)
1 file modified
lava_dispatcher/client/master.py (+1/-1)
To merge this branch: bzr merge lp:~le-chi-thu/lava-dispatcher/fix-lava-test-install-timeout
Reviewer Review Type Date Requested Status
Michael Hudson-Doyle (community) Approve
Review via email: mp+90250@code.launchpad.net

Description of the change

Pass on timeout. Fixed lava-test-install timeout issue

To post a comment you must log in.
Revision history for this message
Michael Hudson-Doyle (mwhudson) wrote :

Good spot!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== 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:20:28 +0000
@@ -219,7 +219,7 @@
219 self._prefix = prefix219 self._prefix = prefix
220220
221 def run(self, cmd, response=None, timeout=-1):221 def run(self, cmd, response=None, timeout=-1):
222 return super(PrefixCommandRunner, self).run(self._prefix + cmd)222 return super(PrefixCommandRunner, self).run(self._prefix + cmd, response, timeout)
223223
224224
225class MasterCommandRunner(NetworkCommandRunner):225class MasterCommandRunner(NetworkCommandRunner):

Subscribers

People subscribed via source and target branches