diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 380: regression: fastmodel android adb not working

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

Commit Message

Andy Doan Sept. 12, 2012, 8:20 p.m. UTC
------------------------------------------------------------
revno: 380
committer: Andy Doan <andy.doan@linaro.org>
branch nick: lava-dispatcher
timestamp: Wed 2012-09-12 15:16:12 -0500
message:
  regression: fastmodel android adb not working
  
  revno 370.1.1 broke adb for fastmodels. While we don't enable networking,
  we still need to always enable ADB over TCP.
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-08-23 15:33:00 +0000
+++ lava_dispatcher/client/base.py	2012-09-12 20:16:12 +0000
@@ -460,7 +460,8 @@ 
         if self.enable_network_after_boot_android:
             time.sleep(1)
             self._enable_network()
-            self._restart_adb_after_netup()
+
+        self._restart_adb_after_netup()
 
 
     def _disable_suspend(self):