diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 174: accept a client_type of "conmux" as an alias for "master" for now

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

Commit Message

Michael-Doyle Hudson Dec. 7, 2011, 1:51 a.m. UTC
------------------------------------------------------------
revno: 174
committer: Michael Hudson-Doyle <michael.hudson@linaro.org>
branch nick: trunk
timestamp: Wed 2011-12-07 14:43:24 +1300
message:
  accept a client_type of "conmux" as an alias for "master" for now
modified:
  lava_dispatcher/context.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/context.py'
--- lava_dispatcher/context.py	2011-11-30 02:31:12 +0000
+++ lava_dispatcher/context.py	2011-12-07 01:43:24 +0000
@@ -33,7 +33,7 @@ 
         device_config = get_device_config(
             target, dispatcher_config.config_dir)
         client_type = device_config.get('client_type')
-        if client_type == 'master':
+        if client_type == 'master' or client_type == 'conmux':
             self._client = LavaMasterImageClient(self, device_config)
         elif client_type == 'qemu':
             self._client = LavaQEMUClient(self, device_config)