aboutsummaryrefslogtreecommitdiff
path: root/lava_dispatcher/connection.py
diff options
context:
space:
mode:
authorMichael Hudson-Doyle <michael.hudson@linaro.org>2012-01-13 12:08:03 +1300
committerMichael Hudson-Doyle <michael.hudson@linaro.org>2012-01-13 12:08:03 +1300
commit1b9eaf65cb68b7d27a4b990edf0aa875f56f109f (patch)
tree2360cf6ec1ded5563af8f73a23ea8b73bcf09044 /lava_dispatcher/connection.py
parent7209ae633093fe8753f8f45acd94e3139a1e4471 (diff)
parent48d08e33b9f33fa34ec29e216ba4577ffbea804b (diff)
support the inclusion of a auth token in the job file and use it when submitting results
this means that it is now possible to submit a job to a private bundle stream
Diffstat (limited to 'lava_dispatcher/connection.py')
-rw-r--r--lava_dispatcher/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lava_dispatcher/connection.py b/lava_dispatcher/connection.py
index e0ad10d20..2c264c30d 100644
--- a/lava_dispatcher/connection.py
+++ b/lava_dispatcher/connection.py
@@ -102,7 +102,7 @@ class LavaConnection(object):
class LavaConmuxConnection(LavaConnection):
def _make_connection(self, sio):
- cmd = "conmux-console %s" % self.device_option("hostname")
+ cmd = self.device_option("connection_command")
proc = pexpect.spawn(cmd, timeout=1200, logfile=sio)
#serial can be slow, races do funny things if you don't increase delay
proc.delaybeforesend=1