diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 316: the hot key message does not actually indicate that the cyclades port is working, so do not wait ...

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

Commit Message

Michael-Doyle Hudson June 6, 2012, 4:12 a.m. UTC
------------------------------------------------------------
revno: 316
committer: Michael Hudson-Doyle <michael.hudson@linaro.org>
branch nick: trunk
timestamp: Wed 2012-06-06 16:10:19 +1200
message:
  the hot key message does not actually indicate that the cyclades port is working, so do not wait for it
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-06-01 04:40:24 +0000
+++ lava_dispatcher/client/master.py	2012-06-06 04:10:19 +0000
@@ -307,13 +307,11 @@ 
         retry_limit = 3
 
         port_stuck_message = 'Data Buffering Suspended\.'
-        hot_key_message = 'Type the hot key to suspend the connection:.*\r'
         conn_closed_message = 'Connection closed by foreign host\.'
 
         expectations = {
             port_stuck_message: 'reset-port',
             'Connected\.\r': 'all-good',
-            hot_key_message: 'all-good',
             conn_closed_message: 'retry',
             pexpect.TIMEOUT: 'all-good',
             }