Merge "Added more testing to compare soft metadata in CLI"

This commit is contained in:
Zuul 2018-11-08 18:20:04 +00:00 committed by Gerrit Code Review
commit 751fc1b7f5
1 changed files with 7 additions and 0 deletions

View File

@ -464,6 +464,13 @@ class Elastic(object):
"Host [{}] missing ".format(host))
continue
for service in meta[0][host]:
if service not in meta[1][host].keys():
self.logger.debug(
"UUID {} "
"- Missing Service : "
"Host [{}] Service [{}]".format(
uuids[1], host, service))
continue
for options in meta[0][host][service].keys():
if options not in meta[1][host][service]:
self.logger.debug(