=== modified file 'doc/index.rst'
@@ -3,7 +3,8 @@
liking, but it should at least contain the root `toctree` directive.
LAVA Dispatcher Documentation
-=============================
+*****************************
+
LAVA Dispatcher is used to dispatch test jobs from server(master node) to the target
boards in validation farm, and publish the test result back to dashboard. It is
scheduled by validation scheduler, and it could also run as standalone.
=== modified file 'lava/dispatcher/node.py'
@@ -317,7 +317,7 @@
:param json_data: Arbitrary data from the job which will form the result bundle
"""
if json_data["bundle"] is None:
- logging.info("Notifyng LAVA Controller of job completion")
+ logging.info("Notifying LAVA Coordinator of job completion")
else:
logging.info("Passing results bundle to LAVA Coordinator.")
reply_str = self._send(json_data)
=== modified file 'lava_dispatcher/job.py'
@@ -228,10 +228,10 @@
metadata['group_size'] = self.job_data['group_size']
self.context.test_data.add_metadata(metadata)
- logging.info("[ACTION-B] Multi Node test!")
- logging.info("[ACTION-B] target_group is (%s)." % self.context.test_data.metadata['target_group'])
+ logging.debug("[ACTION-B] Multi Node test!")
+ logging.debug("[ACTION-B] target_group is (%s)." % self.context.test_data.metadata['target_group'])
else:
- logging.info("[ACTION-B] Single node test!")
+ logging.debug("[ACTION-B] Single node test!")
try:
job_length = len(self.job_data['actions'])
@@ -305,10 +305,10 @@
logging.info("General Exception: %s" % unicode(str(err)))
raise
else:
- logging.info("setting status pass")
+ logging.debug("setting status pass")
status = 'pass'
finally:
- logging.info("finally status %s" % status)
+ logging.debug("finally status %s" % status)
err_msg = ""
if status == 'fail':
# XXX mwhudson, 2013-01-17: I have no idea what this