Merge "Do not dump all instances in the scheduler"

This commit is contained in:
Zuul 2018-09-09 11:13:53 +00:00 committed by Gerrit Code Review
commit aa9f9448c9
1 changed files with 2 additions and 1 deletions

View File

@ -177,7 +177,8 @@ class HostState(object):
LOG.debug("Update host state with service dict: %s", service)
self.service = ReadOnlyDict(service)
if inst_dict is not None:
LOG.debug("Update host state with instances: %s", inst_dict)
LOG.debug("Update host state with instances: %s",
list(inst_dict))
self.instances = inst_dict
return _locked_update(self, compute, service, aggregates, inst_dict)