diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 349: fix regression from revno 347

Message ID 20120717200411.10023.85211.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Andy Doan July 17, 2012, 8:04 p.m. UTC
------------------------------------------------------------
revno: 349
committer: Andy Doan <andy.doan@linaro.org>
branch nick: lava-dispatcher
timestamp: Tue 2012-07-17 15:02:17 -0500
message:
  fix regression from revno 347
  
  This change left out the timeout piece that's required for this call.
modified:
  lava_dispatcher/client/base.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/base.py'
--- lava_dispatcher/client/base.py	2012-07-04 03:38:44 +0000
+++ lava_dispatcher/client/base.py	2012-07-17 20:02:17 +0000
@@ -457,7 +457,9 @@ 
             else:
                 logging.info("Skip raising exception on the home screen has not displayed for health check jobs")
 
-        session.run('/system/bin/disablesuspend.sh')
+        # we need to deal with the time the "input keyevent 82" takes
+        # 240: for fastmodels, 120 failed, 180 failed some
+        session.run('/system/bin/disablesuspend.sh', timeout=240)
 
     def _enable_network(self):
         session = TesterCommandRunner(self, wait_for_rc=False)