Change-Id: I74deaa7923e10da5694403753e6743cce1dc3501
Signed-off-by: ahothan <ahothan@cisco.com>
This commit is contained in:
ahothan 2018-06-13 08:08:32 -07:00
parent fc42153774
commit 8c52aa0e06
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,4 @@
vm
install-static
package-installs
devuser

View File

@ -686,9 +686,10 @@ class KloudBuster(object):
for run_result in self.kb_runner.run(test_only, runlabel):
if not self.multicast_mode or len(self.final_result['kb_result']) == 0:
self.final_result['kb_result'].append(self.kb_runner.tool_result)
tsdb_result = self.tsdb_connector.get_results(start_time=start_time)
if tsdb_result:
self.final_result['tsdb'] = tsdb_result
if self.tsdb_connector:
tsdb_result = self.tsdb_connector.get_results(start_time=start_time)
if tsdb_result:
self.final_result['tsdb'] = tsdb_result
LOG.info('SUMMARY: %s' % self.final_result)
if not self.interactive:
break